Fixed typo in configuration script

This commit is contained in:
jjgarcia 2005-07-14 13:50:51 +00:00
parent 99638a9128
commit d9d9680eb8
2 changed files with 2 additions and 2 deletions

2
src/configure vendored
View file

@ -9611,7 +9611,7 @@ if test ${enable_boehm} = "included"; then
echo "$as_me: Configuring included Boehm GC library:" >&6;}
test -d gc && rm -rf gc
if mkdir gc; then
(destdir=`${PWDCMD}`; cd gc; }
(destdir=`${PWDCMD}`; cd gc; \
CC="${CC} ${PICFLAG}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
$srcdir/gc/configure --disable-shared --prefix=${destdir} \
--includedir=${destdir}/h --libdir=${destdir} --build=${build_alias} \

View file

@ -428,7 +428,7 @@ if test ${enable_boehm} = "included"; then
AC_MSG_NOTICE([Configuring included Boehm GC library:])
test -d gc && rm -rf gc
if mkdir gc; then
(destdir=`${PWDCMD}`; cd gc; }
(destdir=`${PWDCMD}`; cd gc; \
CC="${CC} ${PICFLAG}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
$srcdir/gc/configure --disable-shared --prefix=${destdir} \
--includedir=${destdir}/h --libdir=${destdir} --build=${build_alias} \