summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-09-14 20:52:09 +0000
committerJean Delvare <khali@linux-fr.org>2005-09-14 20:52:09 +0000
commit1ae01653d4ff50b6eb828bc25054ae91e888697d (patch)
tree896fb06666a5037bf916c8ccf4134222d1e5a0f5
parent0df349d659a696582ddc0ef7b81233ee31b9f88d (diff)
downloadquilt-1ae01653d4ff50b6eb828bc25054ae91e888697d.tar.gz
- Makefile.in: Use @BASH@ instead of bash (John Vandenberg).
- Makefile.in: Use `foo` instead of $$(foo) for compatibility. - Makefile.in: Drop call to chmod --reference (Gary V. Vaughan).
-rw-r--r--Makefile.in9
-rw-r--r--quilt.changes7
2 files changed, 11 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index b902aa0..1303dab 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -142,13 +142,13 @@ doc/quilt.1: doc/quilt.1.in $(QUILT:%=quilt/%)
case "$$line" in \
'@REFERENCE''@') \
for cmd in $(sort $(QUILT:%=quilt/%)) ; do \
- (bash -c ". scripts/patchfns ; LC_ALL=C . $$here/$$cmd -h")| \
+ (@BASH@ -c ". scripts/patchfns ; LC_ALL=C . $$here/$$cmd -h")| \
sed -e 's/Usage: quilt //' \
-e 's/^\([^ ]*\)/\\fB\1\\fP/' \
-e 's/^/.IP "/' -e 's/$$/ " 4/' | \
head -n 1; \
echo ; \
- (bash -c ". scripts/patchfns ; LC_ALL=C . $$here/$$cmd -h")| \
+ (@BASH@ -c ". scripts/patchfns ; LC_ALL=C . $$here/$$cmd -h")| \
grep -v 'Usage: quilt' | \
sed -e $$'s/^\t//' \
-e $$'s/\t/\\\n/' | \
@@ -169,7 +169,7 @@ reference : $(QUILT:%=quilt/%) scripts/patchfns
for i in $(filter-out scripts/patchfns,$+); \
do \
echo; \
- (bash -c ". scripts/patchfns ; cd $$dir ;LC_ALL=C . $$i -h"); \
+ (@BASH@ -c ". scripts/patchfns ; cd $$dir ;LC_ALL=C . $$i -h"); \
echo; \
done | \
sed -e '/^Usage:/{s/^Usage: \?//;b}' \
@@ -177,7 +177,7 @@ reference : $(QUILT:%=quilt/%) scripts/patchfns
-e '/^$$/!s/^/ /'
bin/guards.1 : bin/guards
- mkdir -p $$(dirname $@)
+ mkdir -p `dirname $@`
pod2man $< > $@
$(PACKAGE)-$(VERSION).tar.gz : $(SRC) configure $(PACKAGE).spec
@@ -227,7 +227,6 @@ $(PACKAGE).spec : $(PACKAGE).spec.in $(PACKAGE).changes Makefile \
-e 's:@LOCALEDIR''@:$(localedir):g' \
-e 's:@DOCSUBDIR''@:$(docdir)/$(PACKAGE)-$(VERSION):g' \
$< > $@
- @chmod --reference=$< $@
Makefile : Makefile.in
@echo "Please run ./configure by hand"
diff --git a/quilt.changes b/quilt.changes
index fda8865..e127ab5 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Wed Sep 14 22:52:23 CEST 2005 - khali@linux-fr.org
+
+- Makefile.in: Use @BASH@ instead of bash (John Vandenberg).
+- Makefile.in: Use `foo` instead of $$(foo) for compatibility.
+- Makefile.in: Drop call to chmod --reference (Gary V. Vaughan).
+
+-------------------------------------------------------------------
Tue Sep 13 23:01:04 CEST 2005 - khali@linux-fr.org
- quilt/annotate.in: Rework the annotation algorithm (Andreas