summaryrefslogtreecommitdiff
path: root/libstdc++-v3/configure
diff options
context:
space:
mode:
authormsokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-26 06:19:52 +0000
committermsokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-26 06:19:52 +0000
commitca1093bcbeb3828aa8e35b8d9c6afa78a6516e89 (patch)
treed64382a3519c1c6b15bc44a23d0b1d262fa1e010 /libstdc++-v3/configure
parenta092b414629b37268d765396728adba39dc00b31 (diff)
downloadgcc-ca1093bcbeb3828aa8e35b8d9c6afa78a6516e89.tar.gz
* acinclude.m4 (GLIBCPP_CHECK_GNU_MAKE): Bourne shell portability bug
(use ${MAKE-make}, not ${MAKE:-make}). * aclocal.m4, configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39277 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/configure')
-rwxr-xr-xlibstdc++-v3/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
index 91a2a6abf8f..692078ddea5 100755
--- a/libstdc++-v3/configure
+++ b/libstdc++-v3/configure
@@ -2510,7 +2510,7 @@ if eval "test \"`echo '$''{'_cv_gnu_make_command'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
_cv_gnu_make_command='' ;
- for a in "${MAKE:-make}" make gmake gnumake ; do
+ for a in "${MAKE-make}" make gmake gnumake ; do
if ( $a --version 2> /dev/null | grep -c GNU > /dev/null )
then
_cv_gnu_make_command=$a ;