mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-23 21:30:04 +08:00
Fix dashism
I missed some other places that used += * config.m4: Avoid var+=... * configure: Rebuilt
This commit is contained in:
parent
e48456f568
commit
a582a319c1
@ -173,7 +173,7 @@ AC_SUBST(EXCEPTIONS)])
|
||||
AC_DEFUN([NMS_LINK_OPT],
|
||||
[AC_MSG_CHECKING([adding $1 to linker])
|
||||
ORIG_LDFLAGS="$LDFLAGS"
|
||||
LDFLAGS+=" $1"
|
||||
LDFLAGS="$LDFLAGS $1"
|
||||
AC_LINK_IFELSE([AC_LANG_PROGRAM([])],
|
||||
[AC_MSG_RESULT([ok])],
|
||||
[LDFLAGS="$ORIG_LDFLAGS"
|
||||
@ -229,8 +229,8 @@ elif test "$withval" = "no" ; then
|
||||
AC_MSG_RESULT(installed)
|
||||
else
|
||||
AC_MSG_RESULT(${withval})
|
||||
CPPFLAGS+=" -I${withval}/include"
|
||||
LDFLAGS+=" -L${withval}/lib"
|
||||
CPPFLAGS="$CPPFLAGS -I${withval}/include"
|
||||
LDFLAGS="$LDFLAGS -L${withval}/lib"
|
||||
fi,
|
||||
AC_MSG_RESULT(installed))])
|
||||
|
||||
|
2
libcody/configure
vendored
2
libcody/configure
vendored
@ -2639,7 +2639,7 @@ fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking adding -Wl,--no-undefined to linker" >&5
|
||||
$as_echo_n "checking adding -Wl,--no-undefined to linker... " >&6; }
|
||||
ORIG_LDFLAGS="$LDFLAGS"
|
||||
LDFLAGS+=" -Wl,--no-undefined"
|
||||
LDFLAGS="$LDFLAGS -Wl,--no-undefined"
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user