]> git.saurik.com Git - bison.git/blobdiff - bootstrap
(_AT_CHECK_PRINTER_AND_DESTRUCTOR,
[bison.git] / bootstrap
index e995f486da20076d743a1b20a70d086f00e6afa7..c9a2303bcda47b57e188ffc717a5f583e044d40c 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -141,7 +141,7 @@ done
 
 case $SKIP_PO in
 '')
-  echo "$0: getting translations into po..."
+  echo "$0: getting translations into po (please ignore the robots.txt ERROR 404)..."
   (cd po &&
    rm -f dummy `ls | sed -n '/\.gmo$/p; /\.po/p'` &&
    wget -nv -nd -r -l 1 -A .po -C off \
@@ -210,7 +210,7 @@ mv m4/gettext.m4t m4/gettext.m4 || exit
 # remove this once the bug is fixed.
 grep @top_builddir@ po/Makefile.in.in >/dev/null || {
   echo "$0: prepending 'top_builddir=@top_builddir@' to po/Makefile.in.in ... "
-  old_contents=$(cat po/Makefile.in.in) || exit
+  old_contents=`cat po/Makefile.in.in` || exit
   cat >po/Makefile.in.in <<EOF
 top_builddir=@top_builddir@
 $old_contents
@@ -223,9 +223,9 @@ sed '/^MSGID_BUGS_ADDRESS *=/s/=.*/= bug-bison@gnu.org/' po/Makevars.template >p
 
 
 # if src/parse-gram.[ch] are out of date, rebuild them.
-parse_gram_y=$(find src/parse-gram.y \
+parse_gram_y=`find src/parse-gram.y \
                 '(' -newer src/parse-gram.c -o -newer src/parse-gram.h ')' \
-                -print) || exit
+                -print` || exit
 case $parse_gram_y in
 ?*)
   echo "$0: warning: bootstrapping with old src/parse-gram.[ch] files."