Check-in Number:
|
3027 | |
Date: |
2002-Dec-23 09:52:22 (local)
2002-Dec-23 08:52:22 (UTC) |
User: | rse |
Branch: | |
Comment: |
Avoid over-sized lines in xdelta based patch scripts. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/shiela/ChangeLog 1.23 -> 1.24
--- ChangeLog 2002/12/22 19:32:28 1.23
+++ ChangeLog 2002/12/23 08:52:22 1.24
@@ -9,6 +9,11 @@
ChangeLog
+ Changes between 1.0.1 and 1.0.2 (22-Dec-2002 to xx-Dec-2002):
+
+ *) Avoid over-sized lines in xdelta based patch scripts.
+ [Ralf S. Engelschall]
+
Changes between 1.0.0 and 1.0.1 (22-Dec-2002 to 22-Dec-2002):
*) Fixed run-time under Perl 5.8.0: import only abs_path()
|
|
ossp-pkg/shiela/shiela.pl 1.37 -> 1.38
--- shiela.pl 2002/12/23 08:50:34 1.37
+++ shiela.pl 2002/12/23 08:52:22 1.38
@@ -1699,7 +1699,8 @@
if ($RT->{xdelta} and $RT->{uuencode}) {
$cvsdiff .=
"<shiela:patch $cvsdir/$Is>\n" .
- "(cd $cvsdir && uudecode <<'@@ .' && \\\n" .
+ "(cd $cvsdir && \\\n" .
+ " uudecode <<'@@ .' && \\\n" .
" xdelta patch $Is.xdelta /dev/null $Is && \\\n" .
" rm -f $Is.xdelta)\n" .
"Index: $cvsdir/$Is\n" .
@@ -1800,8 +1801,10 @@
# generate change patch script
$cvsdiff .=
"<shiela:patch $cvsdir/$Is>\n" .
- "(cd $cvsdir && uudecode <<'@@ .' && \\\n" .
- " mv $Is $Is.orig && xdelta patch $Is.xdelta $Is.orig $Is && \\\n" .
+ "(cd $cvsdir && \\\n" .
+ " uudecode <<'@@ .' && \\\n" .
+ " mv $Is $Is.orig && \\\n" .
+ " xdelta patch $Is.xdelta $Is.orig $Is && \\\n" .
" rm -f $Is.orig $Is.xdelta)\n" .
"Index: $cvsdir/$Is\n" .
("=" x 76) . "\n";
|
|