summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-06-02 09:36:01 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-06-02 09:36:01 +0300
commitea7d5699d39c418101c9c0f01fe96acc19b27582 (patch)
treeea3c7fe65b06200fc9d413961f58fb6be273808f
parente28c45b427949709cf8565b429059fd95a6a13e0 (diff)
downloadmailutils-ea7d5699d39c418101c9c0f01fe96acc19b27582.tar.gz
mailutils-ea7d5699d39c418101c9c0f01fe96acc19b27582.tar.bz2
Fix absolute name of the "missing" utility
* am/bison.m4: Use $am_aux_dir. Take care to not expand $SHELL prematurely. * am/flex.m4: Likewise.
-rw-r--r--am/bison.m44
-rw-r--r--am/flex.m44
2 files changed, 4 insertions, 4 deletions
diff --git a/am/bison.m4 b/am/bison.m4
index 875b326d0..ea691f176 100644
--- a/am/bison.m4
+++ b/am/bison.m4
@@ -1,10 +1,10 @@
-# bison.m4 serial 1
+# bison.m4 serial 2
AC_DEFUN([MU_PROG_BISON],
[
if test "x$ac_cv_prog_YACC" = x; then
AC_PROG_YACC
if ! $YACC --version 2>/dev/null | grep -q '^bison '; then
- YACC="$SHELL $missing_dir/missing bison"
+ YACC="\${SHELL} $am_aux_dir/missing bison"
fi
fi
])
diff --git a/am/flex.m4 b/am/flex.m4
index 5f0b6ca51..d29efdbe2 100644
--- a/am/flex.m4
+++ b/am/flex.m4
@@ -1,10 +1,10 @@
-# flex.m4 serial 1
+# flex.m4 serial 2
AC_DEFUN([MU_PROG_FLEX],
[
if test "x$LEX" = x; then
AC_PROG_LEX
if ! $LEX --version 2>/dev/null | grep -q '^flex '; then
- LEX="$SHELL $missing_dir/missing flex"
+ LEX="\${SHELL} $am_aux_dir/missing flex"
AC_SUBST([LEX_OUTPUT_ROOT], [lex.yy])
AC_SUBST([LEXLIB], [''])
fi

Return to:

Send suggestions and report system problems to the System administrator.