Opened 15 years ago

Closed 14 years ago

#3192 closed defect (invalid)

"make dist" misses files that should be included

Reported by: adsllc Owned by: warmerdam
Priority: normal Milestone:
Component: default Version: unspecified
Severity: normal 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.

Change History (1)

comment:1 by Even Rouault, 14 years ago

Resolution: invalid
Status: newclosed

Closing as invalid. This is not a GDAL ticket, but it looks more like a GeoTIFF one. It should rather be recreated in http://trac.osgeo.org/geotiff/newticket

Note: See TracTickets for help on using tickets.