automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Missing DESTDIR in Makefile.am install-data-hook in 1.4-p1


From: Kevin Dalley
Subject: Missing DESTDIR in Makefile.am install-data-hook in 1.4-p1
Date: 21 May 2001 01:42:00 -0700
User-agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands)

The install-data-hook target in 1.4-p1 is missing a DESTDIR in front
of $(scriptdir).  Here's a patch.

--- automake-1.4-p1.orig/Makefile.am
+++ automake-1.4-p1/Makefile.am
@@ -29,10 +30,10 @@
 
 install-data-hook:
        @for prog in $(script_DATA); do \
-         chmod +x $(scriptdir)/$$prog; \
+         chmod +x $(DESTDIR)$(scriptdir)/$$prog; \
        done
 
 EXTRA_DIST = acinstall $(pkgdata_DATA) $(script_DATA)
 
 # The following requires a fixed version of the Emacs 19.30 etags.
 ETAGS_ARGS = automake.in aclocal.in --lang=none \


-- 
Kevin Dalley
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]