summaryrefslogtreecommitdiff
path: root/gcc/configure
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-21 02:46:09 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-21 02:46:09 +0000
commit7e8ebf063c63d84455ef57c66f0c6389aee8d0e9 (patch)
tree162bef25378e9e307beb19a01d48f0646eddefed /gcc/configure
parentc013a46ec61dea34c9cd40bfef19757c1f7b718a (diff)
downloadgcc-7e8ebf063c63d84455ef57c66f0c6389aee8d0e9.tar.gz
* aclocal.m4 (gcc_AC_PROG_GNAT): Run prospective ada drivers in
subshells. * configure.in: Likewise for perl Pod::Man. * configure: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48230 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure')
-rwxr-xr-xgcc/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure
index 385810cf63a..a32fa3ae54e 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -2997,7 +2997,7 @@ for cand in ${ac_tool_prefix}$user_adac $user_adac \
# has not been installed. This is fixed in 2.95.4, 3.0.2, and 3.1.
# Therefore we must check for the error message as well as an
# unsuccessful exit.
- errors=`$cand -c conftest.adb 2>&1 || echo failure`
+ errors=`($cand -c conftest.adb) 2>&1 || echo failure`
if test x"$errors" = x; then
gcc_cv_prog_adac=$cand
break
@@ -3124,7 +3124,7 @@ fi
# Is pod2man recent enough to regenerate manpages?
echo $ac_n "checking for recent Pod::Man""... $ac_c" 1>&6
echo "configure:3127: checking for recent Pod::Man" >&5
-if perl -e 'use 1.10 Pod::Man' >/dev/null 2>&1; then
+if (perl -e 'use 1.10 Pod::Man') >/dev/null 2>&1; then
echo "$ac_t""yes" 1>&6
GENERATED_MANPAGES=generated-manpages
else