summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--quilt.changes6
-rw-r--r--scripts/patchfns.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/quilt.changes b/quilt.changes
index 726ffda..2711518 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Wed Apr 28 00:46:31 CEST 2004 - agruen@suse.de
+
+- Fix `quilt fork': It destroys .pc/applied patches; that bug got
+ introduced when reverting it to its previous semantics.
+
+-------------------------------------------------------------------
Wed Apr 21 21:18:14 CEST 2004 - agruen@suse.de
- Replace two occurrences of \t in sed regular expressions
diff --git a/scripts/patchfns.in b/scripts/patchfns.in
index f5b1bd3..10775ba 100644
--- a/scripts/patchfns.in
+++ b/scripts/patchfns.in
@@ -275,8 +275,8 @@ rename_in_db()
/usr/bin/gawk '
/^'"$(quote_re $from)"'$/ \
{ sub(/'"$(quote_re $from)"'/, "'"${to//\"/\\\"}"'")
- print
good=1 }
+ { print }
END { exit(! good) }
' $DB > $tmpfile
if [ $? -eq 0 ]