Author: adsb
Date: 2009-06-17 10:26:33 +0000 (Wed, 17 Jun 2009)
New Revision: 1912
Modified:
trunk/debian/changelog
trunk/scripts/uupdate.sh
Log:
uupdate: Fix invocation of *cat when attempting to apply diffs.
Thanks, Yannick Roehlly. (Closes: #533415)
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2009-06-15 19:29:21 UTC (rev 1911)
+++ trunk/debian/changelog 2009-06-17 10:26:33 UTC (rev 1912)
@@ -2,6 +2,8 @@
* debdiff: Make --diffstat work again; diffstat exits 0 unless there was
a problem. Accidentally broken in 2.10.48.
+ * uupdate: Fix invocation of *cat when attempting to apply diffs.
+ Thanks, Yannick Roehlly. (Closes: #533415)
-- Adam D. Barratt <[email protected]> Mon, 15 Jun 2009 19:41:02 +0100
Modified: trunk/scripts/uupdate.sh
===================================================================
--- trunk/scripts/uupdate.sh 2009-06-15 19:29:21 UTC (rev 1911)
+++ trunk/scripts/uupdate.sh 2009-06-17 10:26:33 UTC (rev 1912)
@@ -722,7 +722,7 @@
done
fi
- if $DIFFCAT ../$DIFF | patch -sNp1 ; then
+ if $DIFFCAT $DIFF | patch -sNp1 ; then
echo "Success! The diffs from version $VERSION worked fine."
else
echo "$PROGNAME: the diffs from version $VERSION did not apply
cleanly!" >&2
--
To unsubscribe, send mail to [email protected].