diff options
author | tron <tron> | 1998-02-14 08:42:34 +0000 |
---|---|---|
committer | tron <tron> | 1998-02-14 08:42:34 +0000 |
commit | 4c62d3e2ed166b7fc2071c02fb020e37b187f4b3 (patch) | |
tree | ffcbf00c7586e33651fe58de5741e793eb9a199f /devel/cvs | |
parent | a869ff2cc84fb71ddc6d3d0ec03668858f52fd64 (diff) | |
download | pkgsrc-4c62d3e2ed166b7fc2071c02fb020e37b187f4b3.tar.gz |
Don't try to strip scripts while installing. Fixes first half of
PR pkg/4989 by David Brownlee.
Diffstat (limited to 'devel/cvs')
-rw-r--r-- | devel/cvs/patches/patch-ad | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/devel/cvs/patches/patch-ad b/devel/cvs/patches/patch-ad new file mode 100644 index 00000000000..ebf4cab0987 --- /dev/null +++ b/devel/cvs/patches/patch-ad @@ -0,0 +1,24 @@ +--- contrib/Makefile.in.orig Fri Feb 13 17:39:12 1998 ++++ contrib/Makefile.in Fri Feb 13 17:41:51 1998 +@@ -43,7 +43,7 @@ + # Use cp if you don't have install. + INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ +-INSTALL_PROGRAM = @INSTALL_PROGRAM@ ++INSTALL_SCRIPT = ${INSTALL} -m 0555 + + DISTFILES = \ + ChangeLog README .cvsignore intro.doc \ +@@ -89,10 +89,10 @@ + $(INSTALL_DATA) $(srcdir)/$$f $(libdir)/cvs/contrib/$$f; \ + done + for f in $(CONTRIB_PROGS) ; do\ +- $(INSTALL_PROGRAM) $$f $(libdir)/cvs/contrib/$$f; \ ++ $(INSTALL_SCRIPT) $$f $(libdir)/cvs/contrib/$$f; \ + done + for f in $(PROGS) ; do\ +- $(INSTALL_PROGRAM) $$f $(bindir)/$$f; \ ++ $(INSTALL_SCRIPT) $$f $(bindir)/$$f; \ + done + .PHONY: install + |