summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-08-27 03:35:09 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-08-27 03:35:09 +0000
commitbc94006bd572a3d04eb1af1372b69a3073ea421e (patch)
tree34fb80feed059b28e49f1ef2e1784d4ec9141948
parentbe5edb4b0cca84dec9f4a08321e82641423e7375 (diff)
downloadcoreutils-bc94006bd572a3d04eb1af1372b69a3073ea421e.tar.xz
Fix typo in previous bootstrap change; WGET_COMMAND is needed by sh.
-rw-r--r--ChangeLog2
-rwxr-xr-xbootstrap2
2 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index acddff05a..b4c8773a2 100644
--- 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>
diff --git a/bootstrap b/bootstrap
index 17e07edaa..7afc71fc9 100755
--- 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" &&