summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-02-22 23:37:19 +0100
committerJim Meyering <jim@meyering.net>2007-02-22 23:37:19 +0100
commit93f9b9be84570d9899a8a61e56f773bf4eb87290 (patch)
tree48b104c5e4997a14a82cab527d4c6db66e61a206 /bootstrap
parent4e73fea3e3b6fb721b91bb81e5357fb805eb590d (diff)
downloadcoreutils-93f9b9be84570d9899a8a61e56f773bf4eb87290.tar.gz
Merge in a change from some other incarnation of this file (gzip?)
* bootstrap (gnulib_tool): Skip get_translations if there is no po/ dir.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap4
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 7e9ababf9..bf94f9b0f 100755
--- a/bootstrap
+++ b/bootstrap
@@ -250,7 +250,9 @@ case $SKIP_PO in
WGET_COMMAND='';;
esac
- get_translations po $package || exit
+ if test -d po; then
+ get_translations po $package || exit
+ fi
if test -d runtime-po; then
get_translations runtime-po $package-runtime || exit