configure: echo message to AS_MESSAGE_FD. --silent redirects fd to /dev/null.
This commit is contained in:
parent
2658dd7cab
commit
75ed890de5
|
@ -16489,19 +16489,19 @@ $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
echo "creating Modules/Setup"
|
echo "creating Modules/Setup" >&6
|
||||||
if test ! -f Modules/Setup
|
if test ! -f Modules/Setup
|
||||||
then
|
then
|
||||||
cp $srcdir/Modules/Setup.dist Modules/Setup
|
cp $srcdir/Modules/Setup.dist Modules/Setup
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "creating Modules/Setup.local"
|
echo "creating Modules/Setup.local" >&6
|
||||||
if test ! -f Modules/Setup.local
|
if test ! -f Modules/Setup.local
|
||||||
then
|
then
|
||||||
echo "# Edit this file for local setup changes" >Modules/Setup.local
|
echo "# Edit this file for local setup changes" >Modules/Setup.local
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "creating Makefile"
|
echo "creating Makefile" >&6
|
||||||
$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
|
$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
|
||||||
-s Modules Modules/Setup.config \
|
-s Modules Modules/Setup.config \
|
||||||
Modules/Setup.local Modules/Setup
|
Modules/Setup.local Modules/Setup
|
||||||
|
|
|
@ -4666,19 +4666,19 @@ AC_CONFIG_FILES(Makefile.pre Modules/Setup.config Misc/python.pc)
|
||||||
AC_CONFIG_FILES([Modules/ld_so_aix], [chmod +x Modules/ld_so_aix])
|
AC_CONFIG_FILES([Modules/ld_so_aix], [chmod +x Modules/ld_so_aix])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
echo "creating Modules/Setup"
|
echo "creating Modules/Setup" >&AS_MESSAGE_FD
|
||||||
if test ! -f Modules/Setup
|
if test ! -f Modules/Setup
|
||||||
then
|
then
|
||||||
cp $srcdir/Modules/Setup.dist Modules/Setup
|
cp $srcdir/Modules/Setup.dist Modules/Setup
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "creating Modules/Setup.local"
|
echo "creating Modules/Setup.local" >&AS_MESSAGE_FD
|
||||||
if test ! -f Modules/Setup.local
|
if test ! -f Modules/Setup.local
|
||||||
then
|
then
|
||||||
echo "# Edit this file for local setup changes" >Modules/Setup.local
|
echo "# Edit this file for local setup changes" >Modules/Setup.local
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "creating Makefile"
|
echo "creating Makefile" >&AS_MESSAGE_FD
|
||||||
$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
|
$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
|
||||||
-s Modules Modules/Setup.config \
|
-s Modules Modules/Setup.config \
|
||||||
Modules/Setup.local Modules/Setup
|
Modules/Setup.local Modules/Setup
|
||||||
|
|
Loading…
Reference in New Issue