summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2004-10-17 20:58:42 +0000
committerAndreas Gruenbacher <agruen@suse.de>2004-10-17 20:58:42 +0000
commit149b6b79b754df93ca0e0a73da6613516a567f93 (patch)
tree855c0e84b5f66e1194cd15835431b2f0d103f67e
parent423903f9095b4e447b738715e460cb9319a44c2e (diff)
downloadquilt-0.37.tar.gz
- Add a missing print_patch call (cosmetic).v0.37
-rw-r--r--quilt.changes1
-rw-r--r--quilt/patches.in11
2 files changed, 3 insertions, 9 deletions
diff --git a/quilt.changes b/quilt.changes
index c10efea..e361ca4 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -8,6 +8,7 @@ Sun Oct 17 22:19:09 CEST 2004 - agruen@suse.de
can't fic them up. Remove them, instead.
- Pop command: Touch files after they are restored so that tools
like make don't get confused.
+- Add a missing print_patch call (cosmetic).
- Bump to version 0.37.
-------------------------------------------------------------------
diff --git a/quilt/patches.in b/quilt/patches.in
index 6140f97..92628c6 100644
--- a/quilt/patches.in
+++ b/quilt/patches.in
@@ -45,9 +45,7 @@ scan_applied()
do
if [ -f "$QUILT_PC/$patch/$file" ]
then
- [ -n "$opt_filenames" ] && \
- patch=$(patch_file_name $patch)
- echo "$prefix$patch"
+ echo "$prefix$(print_patch patch)"
fi
done
}
@@ -63,9 +61,7 @@ scan_unapplied()
if touched_by_patch $(patch_strip_level $patch) $patch \
| grep -q "^$file_bre\$"
then
- [ -n "$opt_filenames" ] && \
- patch=$(patch_file_name $patch)
- echo "$prefix$patch"
+ echo "$prefix$(print_patch patch)"
fi
done
}
@@ -82,9 +78,6 @@ eval set -- "$options"
while true
do
case "$1" in
- -n)
- opt_filenames=1
- shift ;;
-v)
opt_verbose=1
shift ;;