mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-23 14:09:51 +08:00
1999-10-31 Akim Demaille <akim@epita.fr>
* acgeneral.m4 (AC_INIT_PARSE_ARGS): Avoid to use double quotes inside "`...`": some shells parse this inccorrectly.
This commit is contained in:
parent
f0d39e7e33
commit
28497c7168
@ -1,3 +1,8 @@
|
|||||||
|
1999-10-31 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
* acgeneral.m4 (AC_INIT_PARSE_ARGS): Avoid to use double quotes
|
||||||
|
inside "`...`": some shells parse this inccorrectly.
|
||||||
|
|
||||||
1999-10-31 Akim Demaille <akim@epita.fr>
|
1999-10-31 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* Makefile.am (pkgdata_DATA, EXTRA_DIST): Removed acconfig.h.
|
* Makefile.am (pkgdata_DATA, EXTRA_DIST): Removed acconfig.h.
|
||||||
|
10
acgeneral.m4
10
acgeneral.m4
@ -892,7 +892,7 @@ changequote([, ])dnl
|
|||||||
ac_feature=`echo "$ac_option"|sed -e 's/-*disable-//'`
|
ac_feature=`echo "$ac_option"|sed -e 's/-*disable-//'`
|
||||||
# Reject names that are not valid shell variable names.
|
# Reject names that are not valid shell variable names.
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_feature"| sed 's/[-a-zA-Z0-9_]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_ERROR($ac_feature: invalid feature name)
|
AC_MSG_ERROR($ac_feature: invalid feature name)
|
||||||
fi
|
fi
|
||||||
@ -903,7 +903,7 @@ changequote([, ])dnl
|
|||||||
ac_feature=`echo "$ac_option"|sed -e 's/-*enable-//' -e 's/=.*//'`
|
ac_feature=`echo "$ac_option"|sed -e 's/-*enable-//' -e 's/=.*//'`
|
||||||
# Reject names that are not valid shell variable names.
|
# Reject names that are not valid shell variable names.
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_feature"| sed 's/[-_a-zA-Z0-9]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_ERROR($ac_feature: invalid feature name)
|
AC_MSG_ERROR($ac_feature: invalid feature name)
|
||||||
fi
|
fi
|
||||||
@ -1156,7 +1156,7 @@ Some of the influent environment variables:$ac_arg_var_help"
|
|||||||
ac_package=`echo "$ac_option"|sed -e 's/-*with-//' -e 's/=.*//'`
|
ac_package=`echo "$ac_option"|sed -e 's/-*with-//' -e 's/=.*//'`
|
||||||
# Reject names that are not valid shell variable names.
|
# Reject names that are not valid shell variable names.
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_package"| sed 's/[-_a-zA-Z0-9]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_ERROR($ac_package: invalid package name)
|
AC_MSG_ERROR($ac_package: invalid package name)
|
||||||
fi
|
fi
|
||||||
@ -1171,7 +1171,7 @@ changequote([, ])dnl
|
|||||||
ac_package=`echo "$ac_option"|sed -e 's/-*without-//'`
|
ac_package=`echo "$ac_option"|sed -e 's/-*without-//'`
|
||||||
# Reject names that are not valid shell variable names.
|
# Reject names that are not valid shell variable names.
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_package"| sed 's/[-a-zA-Z0-9_]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_ERROR($ac_package: invalid package name)
|
AC_MSG_ERROR($ac_package: invalid package name)
|
||||||
fi
|
fi
|
||||||
@ -1212,7 +1212,7 @@ changequote([, ])dnl
|
|||||||
|
|
||||||
*)
|
*)
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_option"| sed 's/[-a-z0-9.]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9.]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_WARN($ac_option: invalid host type)
|
AC_MSG_WARN($ac_option: invalid host type)
|
||||||
fi
|
fi
|
||||||
|
@ -892,7 +892,7 @@ changequote([, ])dnl
|
|||||||
ac_feature=`echo "$ac_option"|sed -e 's/-*disable-//'`
|
ac_feature=`echo "$ac_option"|sed -e 's/-*disable-//'`
|
||||||
# Reject names that are not valid shell variable names.
|
# Reject names that are not valid shell variable names.
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_feature"| sed 's/[-a-zA-Z0-9_]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_ERROR($ac_feature: invalid feature name)
|
AC_MSG_ERROR($ac_feature: invalid feature name)
|
||||||
fi
|
fi
|
||||||
@ -903,7 +903,7 @@ changequote([, ])dnl
|
|||||||
ac_feature=`echo "$ac_option"|sed -e 's/-*enable-//' -e 's/=.*//'`
|
ac_feature=`echo "$ac_option"|sed -e 's/-*enable-//' -e 's/=.*//'`
|
||||||
# Reject names that are not valid shell variable names.
|
# Reject names that are not valid shell variable names.
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_feature"| sed 's/[-_a-zA-Z0-9]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_ERROR($ac_feature: invalid feature name)
|
AC_MSG_ERROR($ac_feature: invalid feature name)
|
||||||
fi
|
fi
|
||||||
@ -1156,7 +1156,7 @@ Some of the influent environment variables:$ac_arg_var_help"
|
|||||||
ac_package=`echo "$ac_option"|sed -e 's/-*with-//' -e 's/=.*//'`
|
ac_package=`echo "$ac_option"|sed -e 's/-*with-//' -e 's/=.*//'`
|
||||||
# Reject names that are not valid shell variable names.
|
# Reject names that are not valid shell variable names.
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_package"| sed 's/[-_a-zA-Z0-9]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_ERROR($ac_package: invalid package name)
|
AC_MSG_ERROR($ac_package: invalid package name)
|
||||||
fi
|
fi
|
||||||
@ -1171,7 +1171,7 @@ changequote([, ])dnl
|
|||||||
ac_package=`echo "$ac_option"|sed -e 's/-*without-//'`
|
ac_package=`echo "$ac_option"|sed -e 's/-*without-//'`
|
||||||
# Reject names that are not valid shell variable names.
|
# Reject names that are not valid shell variable names.
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_package"| sed 's/[-a-zA-Z0-9_]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_ERROR($ac_package: invalid package name)
|
AC_MSG_ERROR($ac_package: invalid package name)
|
||||||
fi
|
fi
|
||||||
@ -1212,7 +1212,7 @@ changequote([, ])dnl
|
|||||||
|
|
||||||
*)
|
*)
|
||||||
changequote(, )dnl
|
changequote(, )dnl
|
||||||
if test -n "`echo "$ac_option"| sed 's/[-a-z0-9.]//g'`"; then
|
if echo "$ac_feature" | grep '[^-a-zA-Z0-9.]' >/dev/null 2>&1; then
|
||||||
changequote([, ])dnl
|
changequote([, ])dnl
|
||||||
AC_MSG_WARN($ac_option: invalid host type)
|
AC_MSG_WARN($ac_option: invalid host type)
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user