changeset 11660:f60153e879e4

bootstrap: split long lines * build-aux/bootstrap: Keep line length < 80.
author Jim Meyering <meyering@redhat.com>
date Sun, 28 Jun 2009 11:25:25 +0200
parents 9456d3e6e79a
children 06bbe9b0bb80
files ChangeLog build-aux/bootstrap
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2009-06-28  Jim Meyering  <meyering@redhat.com>
 
+	bootstrap: split long lines
+	* build-aux/bootstrap: Keep line length < 80.
+
 	bootstrap: sync from coreutils
 	* build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
 	just as autoreconf does.  Verify a list of prerequisite
--- a/build-aux/bootstrap
+++ b/build-aux/bootstrap
@@ -313,7 +313,7 @@
 
 if ! printf "$buildreq" | check_versions; then
   test -f README-prereq &&
-  echo "Please see README-prereq for notes on obtaining these prerequisite programs:" >&2
+  echo "See README-prereq for notes on obtaining these prerequisite programs:" >&2
   echo
   print_versions
   exit 1
@@ -420,9 +420,11 @@
     cksum_file="$ref_po_dir/$po.s1"
     if ! test -f "$cksum_file" ||
 	! test -f "$po_dir/$po.po" ||
-	! ${SHA1SUM-sha1sum} -c --status "$cksum_file" < "$new_po" > /dev/null; then
+	! ${SHA1SUM-sha1sum} -c --status "$cksum_file" \
+            < "$new_po" > /dev/null; then
       echo "updated $po_dir/$po.po..."
-      cp "$new_po" "$po_dir/$po.po" && ${SHA1SUM-sha1sum} < "$new_po" > "$cksum_file"
+      cp "$new_po" "$po_dir/$po.po" \
+          && ${SHA1SUM-sha1sum} < "$new_po" > "$cksum_file"
     fi
   done
 }