Opened 15 years ago
Closed 15 years ago
#21 closed defect (fixed)
"make dist" misses files that should be included
Reported by: | adsllc | Owned by: | warmerdam |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | libgeotiff | Version: | |
Keywords: | Cc: |
Description
LICENSE, makefile.vc, README_BIN and README.WIN are not packaged by the "make dist" command.
The "lib_geotiff_EXTRA_DIST" line in Makefile.am should be just "EXTRA_DIST" instead.
In patch form:
Index: Makefile.am =================================================================== --- Makefile.am (revision 1664) +++ Makefile.am (working copy) @@ -101,7 +101,7 @@ lib_LTLIBRARIES = libgeotiff.la -lib_geotiff_EXTRA_DIST = makefile.vc \ +EXTRA_DIST = makefile.vc \ README \ README.WIN \ README_BIN \
"lib_geotiff_EXTRA_DIST" is not recognised as a magic variable by automake and so the resulting Makefile leaves the definition intact but never uses it.
Note:
See TracTickets
for help on using tickets.
Fixed in trunk (r1682).
Thanks