Fix typo in previous bootstrap change; WGET_COMMAND is needed by sh.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 27 Aug 2006 03:35:09 +0000 (03:35 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 27 Aug 2006 03:35:09 +0000 (03:35 +0000)
ChangeLog
bootstrap

index acddff0..b4c8773 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,7 +4,7 @@
        Fail if the first "echo" fails.  Suppress diagnostics from "ls po/*.po"
        since there might not be any .po files.
        (WGET_COMMAND): Set to empty if wget doesn't
-       seem to be available.  Don't export; shouldn't be needed.
+       seem to be available.
 
 2006-08-26  Jim Meyering  <jim@meyering.net>
 
index 17e07ed..7afc71f 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -185,7 +185,7 @@ get_translations() {
        printf "    rm -f %s/%s.po; }; } &&\n", subdir, lang
       }
       END { print ":" }
-    ' | sh;;
+    ' | WGET_COMMAND="$WGET_COMMAND" sh;;
   esac &&
   ls "$subdir"/*.po 2>/dev/null |
     sed 's|.*/||; s|\.po$||' >"$subdir/LINGUAS" &&