]> git.saurik.com Git - bison.git/blobdiff - bootstrap
Update location of patched M4 distribution.
[bison.git] / bootstrap
index 55a62992494ee5d3a3386492297bd2ee9b70df27..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 \
@@ -206,13 +206,11 @@ sed '
 ' m4/gettext.m4 >m4/gettext.m4t &&
 mv m4/gettext.m4t m4/gettext.m4 || exit
 
-echo 'AC_DEFUN([AM_INTL_SUBDIR],[])' >>m4/gettext.m4 || exit
-
 # Patch what appears to be a bug in gettext 0.14.1;
 # 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
@@ -225,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."