summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-04-30 18:17:36 +0200
committerJim Meyering <meyering@redhat.com>2010-04-30 18:17:50 +0200
commit0c6cf5ab43555377b99d94febb2d6f23fc3d2cb0 (patch)
tree1b469e1b352e1e2653fd5e4c536f26de8cc0c6fb /build-aux
parent09443c24b9e9da535a409f15f88323fc83bfed8e (diff)
downloadgnulib-0c6cf5ab43555377b99d94febb2d6f23fc3d2cb0.tar.gz
bootstrap: don't ignore failure to generate po*/Makevars
* build-aux/bootstrap (with_gettext): Don't ignore failure to create po/Makevars or runtime-po/Makevars.
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/bootstrap6
1 files changed, 3 insertions, 3 deletions
diff --git a/build-aux/bootstrap b/build-aux/bootstrap
index 9686baaadf..e55b3d225f 100755
--- a/build-aux/bootstrap
+++ b/build-aux/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
# Print a version string.
-scriptversion=2010-02-24.17; # UTC
+scriptversion=2010-04-30.16; # UTC
# Bootstrap this package from checked-out sources.
@@ -819,7 +819,7 @@ if test $with_gettext = yes; then
a\
'"$XGETTEXT_OPTIONS"' $${end_of_xgettext_options+}
}
- ' po/Makevars.template >po/Makevars
+ ' po/Makevars.template >po/Makevars || exit 1
if test -d runtime-po; then
# Similarly for runtime-po/Makevars, but not quite the same.
@@ -833,7 +833,7 @@ if test $with_gettext = yes; then
a\
'"$XGETTEXT_OPTIONS_RUNTIME"' $${end_of_xgettext_options+}
}
- ' <po/Makevars.template >runtime-po/Makevars
+ ' po/Makevars.template >runtime-po/Makevars || exit 1
# Copy identical files from po to runtime-po.
(cd po && cp -p Makefile.in.in *-quot *.header *.sed *.sin ../runtime-po)