diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-27 03:35:09 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-27 03:35:09 +0000 |
commit | bc94006bd572a3d04eb1af1372b69a3073ea421e (patch) | |
tree | 34fb80feed059b28e49f1ef2e1784d4ec9141948 | |
parent | be5edb4b0cca84dec9f4a08321e82641423e7375 (diff) | |
download | coreutils-bc94006bd572a3d04eb1af1372b69a3073ea421e.tar.xz |
Fix typo in previous bootstrap change; WGET_COMMAND is needed by sh.
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | bootstrap | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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> @@ -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" && |