summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2003-03-22 11:34:14 +0000
committerAndreas Gruenbacher <agruen@suse.de>2003-03-22 11:34:14 +0000
commita99811be10ebb871f1e458fd3692540efac27106 (patch)
tree74165b500bc461bccaab425a7fd13493f2532055 /Makefile.in
parent4e48fd5a6c8218e491ef3536121aae3c7a157ed6 (diff)
downloadquilt-a99811be10ebb871f1e458fd3692540efac27106.tar.gz
- Also substitute @SED@ and @AWK@.
- Some versions of sed don't like '\t'. Expand those in the shell instead.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 9fdea02..b164558 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -19,6 +19,8 @@ LIB_DIR = $(libdir)/$(PACKAGE)
INSTALL := @INSTALL@
PERL := @PERL@
BASH := @BASH@
+SED := @SED@
+AWK := @AWK@
DIFF := @DIFF@
PATCH := @PATCH@
MKTEMP := @MKTEMP@
@@ -161,6 +163,8 @@ $(PACKAGE).spec : $(PACKAGE).spec.in $(PACKAGE).changes Makefile \
-e 's:@SCRIPTS''@:$(SCRIPTS_DIR):g' \
-e 's:@PERL''@:$(PERL):g' \
-e 's:@BASH''@:$(BASH):g' \
+ -e 's:@SED''@:$(SED):g' \
+ -e 's:@AWK''@:$(AWK):g' \
-e 's:@DIFF''@:$(DIFF):g' \
-e 's:@PATCH''@:$(PATCH):g' \
-e 's:@MKTEMP''@:$(MKTEMP):g' \