Skip to content

Commit

Permalink
Do not install "dummy" CHANGES file.
Browse files Browse the repository at this point in the history
Do not install the "dummy" CHANGES file from the main directory of the
source tree since it does not contain any useful information (after the
DCMTK has been installed).
  • Loading branch information
jriesmeier committed Nov 28, 2019
1 parent 9de3cf8 commit 77edf94
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
15 changes: 8 additions & 7 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@

In earlier versions of DCMTK, changes between releases had been documented in a
CHANGES.XXX file inside DCMTK's main directory.
CHANGES.XXX file inside DCMTK's main directory, with "XXX" referring to the
version number of the release.

Now, the CHANGES.XXX file has been moved to the dcmtk/doc folder with the latest
one being updated every time that a new DCMTK version is released. Thus it
always contains all DCMTK changes between the last DCMTK release and the most
recent one.
Now, the CHANGES.XXX file has been moved to the dcmtk/docs folder (in the
source code package) with the latest one being updated every time a new DCMTK
version is released. Thus, it always contains all DCMTK changes between the
previous DCMTK release and the most recent one.

For very recent changes, i. e. those changes to DCMTK that have been applied
after the most recent release, see the DCMTK git repository log at
http://git.dcmtk.org/ .
after the most recent release, see the commit history of DCMTK's git repository
at https://git.dcmtk.org/.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ install(FILES "${DCMTK_BINARY_DIR}/config/include/dcmtk/config/osconfig.h"
COMPONENT include)

# Install DCMTK's general documentation files
install(FILES ANNOUNCE CHANGES COPYRIGHT CREDITS FAQ HISTORY VERSION
install(FILES ANNOUNCE COPYRIGHT CREDITS FAQ HISTORY VERSION
DESTINATION "${CMAKE_INSTALL_DOCDIR}"
COMPONENT doc)
install(DIRECTORY docs/ DESTINATION "${CMAKE_INSTALL_DOCDIR}"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ check-nosilent-exhaustive: config-check-exhaustive ofstd-check-exhaustive oflog

dcmtk-install-doc:
$(configdir)/mkinstalldirs $(DESTDIR)$(docdir)
for file in ANNOUNCE CHANGES COPYRIGHT CREDITS FAQ HISTORY VERSION docs/CHANGES.???; do \
for file in ANNOUNCE COPYRIGHT CREDITS FAQ HISTORY VERSION docs/CHANGES.???; do \
$(INSTALL_DATA) $$file $(DESTDIR)$(docdir) ;\
done

Expand Down
2 changes: 1 addition & 1 deletion config/rootconf
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ check-nosilent-exhaustive: $makecheckexhaustive
dcmtk-install-doc:
\$(configdir)/mkinstalldirs \$(DESTDIR)\$(docdir)
for file in ANNOUNCE CHANGES COPYRIGHT CREDITS FAQ HISTORY VERSION docs/CHANGES.???; do \\
for file in ANNOUNCE COPYRIGHT CREDITS FAQ HISTORY VERSION docs/CHANGES.???; do \\
\$(INSTALL_DATA) \$\$file \$(DESTDIR)\$(docdir) ;\\
done
Expand Down

0 comments on commit 77edf94

Please sign in to comment.