summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-09-20 18:07:45 +0000
committerJean Delvare <khali@linux-fr.org>2005-09-20 18:07:45 +0000
commit40e41fc6675c87eff274cb49c5e517ce24815a3c (patch)
tree93872fb6e3f340cc6d58820268c0d08b3d36e8a5 /Makefile.in
parentf6ce6f76fba5c064e52395e029caba6c26b32fa0 (diff)
downloadquilt-40e41fc6675c87eff274cb49c5e517ce24815a3c.tar.gz
- Makefile.in: Fix compat/tail symlink creation. Fix variable exporting
bashism. - configure.ac: Use grep >/dev/null instead of grep -q for compatibility. Test for grep -q, some quilt scripts need it. - test/Makefile: Fix varible exporting and script sourcing bashisms.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index c535c66..d24abbb 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -25,6 +25,7 @@ GETOPT := @GETOPT@
PERL := @PERL@
BASH := @BASH@
GREP := @GREP@
+TAIL := @TAIL@
SED := @SED@
AWK := @AWK@
DIFF := @DIFF@
@@ -180,8 +181,9 @@ doc/README : doc/README.in $(QUILT:%=quilt/%)
doc/quilt.1: doc/quilt.1.in $(QUILT:%=quilt/%) compat-programs
@echo "quilt.1.in -> quilt.1"
- @export PATH="`pwd`/compat:$$PATH"; \
- here=`pwd`; \
+ @here=`pwd`; \
+ PATH="$$here/compat:$$PATH"; \
+ export PATH; \
while read line; do \
case "$$line" in \
'@REFERENCE''@') \
@@ -209,7 +211,8 @@ doc/quilt.1: doc/quilt.1.in $(QUILT:%=quilt/%) compat-programs
.PHONY :: reference
reference : $(QUILT:%=quilt/%) compat-programs scripts/patchfns
- @export PATH="`pwd`/compat:$$PATH"; \
+ @PATH="`pwd`/compat:$$PATH"; \
+ export PATH; \
dir=$(CURDIR); \
for i in $(QUILT:%=quilt/%); \
do \