summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2004-11-08 12:07:09 +0000
committerAndreas Gruenbacher <agruen@suse.de>2004-11-08 12:07:09 +0000
commit521b22524045baf633b729fdc5fa4a7c7c1d100c (patch)
tree61a55d0aeebdbee7d3aba07aaf17bd35aac34418
parentb5c032075556514b4fc47c0e4e61835cee71637d (diff)
downloadquilt-521b22524045baf633b729fdc5fa4a7c7c1d100c.tar.gz
- Fix patches command (Brent Casavant <bcasavan@sgi.com>).
-rw-r--r--quilt.changes3
-rw-r--r--quilt/patches.in4
2 files changed, 4 insertions, 3 deletions
diff --git a/quilt.changes b/quilt.changes
index 1482715..abbefe6 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,10 +1,11 @@
-------------------------------------------------------------------
-Mon Nov 8 12:54:15 CET 2004 - agruen@suse.de
+Mon Nov 8 13:02:31 CET 2004 - agruen@suse.de
- Fix extra trailing space in series file after quilt refresh
(David Vrabel <dvrabel@arcom.com>).
- Missing quotation in bash_completion
(Axel Grossklaus <ag@pre-secure.de>).
+- Fix patches command (Brent Casavant <bcasavan@sgi.com>).
-------------------------------------------------------------------
Sun Oct 17 22:19:09 CEST 2004 - agruen@suse.de
diff --git a/quilt/patches.in b/quilt/patches.in
index 92628c6..44c03bd 100644
--- a/quilt/patches.in
+++ b/quilt/patches.in
@@ -45,7 +45,7 @@ scan_applied()
do
if [ -f "$QUILT_PC/$patch/$file" ]
then
- echo "$prefix$(print_patch patch)"
+ echo "$prefix$(print_patch $patch)"
fi
done
}
@@ -61,7 +61,7 @@ scan_unapplied()
if touched_by_patch $(patch_strip_level $patch) $patch \
| grep -q "^$file_bre\$"
then
- echo "$prefix$(print_patch patch)"
+ echo "$prefix$(print_patch $patch)"
fi
done
}