mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Fixed shell syntax
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9383 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ddf632489b
commit
e8aaf082eb
1 changed files with 3 additions and 3 deletions
|
@ -153,14 +153,14 @@ AC_CYGWIN
|
|||
AC_MINGW32
|
||||
AC_EXEEXT
|
||||
AC_OBJEXT
|
||||
if test $MINGW32 = yes; then
|
||||
if test "$MINGW32" = yes; then
|
||||
echo "hosted on mingw32 .."
|
||||
export SHELL=zsh
|
||||
export CC=${CC:-gcc}
|
||||
export AR=${AR:-ar}
|
||||
export RANLIB=${RANLIB:-ranlib}
|
||||
export DLLTOOL=${DLLTOOL:-dlltool}
|
||||
elif $CYGWIN = yes; then
|
||||
elif test "$CYGWIN" = yes; then
|
||||
echo "hosted on cygwin .."
|
||||
export CC=${CC:-gcc}
|
||||
export AR=${AR:-ar}
|
||||
|
@ -306,7 +306,7 @@ elif test "`echo $host_os|sed 's/[[0-9]].*//'|sed s/elf//`" = freebsd; then
|
|||
AC_TRY_RUN([#include "config_thread.m"], objc_threaded="-lpcthread",
|
||||
objc_threaded="", objc_threaded="-lpcthread")
|
||||
fi
|
||||
elif test $MINGW32 = yes; then
|
||||
elif test "$MINGW32" = yes; then
|
||||
# Mingw doesn't need anything extra for threads
|
||||
LIBS="-lobjc $LIBS $extra_LIBS"
|
||||
AC_TRY_RUN([#include "config_thread.m"],
|
||||
|
|
Loading…
Reference in a new issue