forked from Mirrors/freeswitch
FS-10875: #resolve Portability issues for non-bash interpreters.
This commit is contained in:
parent
78c189bfcc
commit
6cc029b579
|
@ -1506,7 +1506,7 @@ if test "$with_ldap" = "yes"; then
|
|||
OPENLDAP_LIBS="${OPENLDAP_LIBS} -lldap"
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL([HAVE_LDAP],[test "x$with_ldap" == "xyes"])
|
||||
AM_CONDITIONAL([HAVE_LDAP],[test "x$with_ldap" = "xyes"])
|
||||
|
||||
AC_SUBST(OPENLDAP_LIBS)
|
||||
|
||||
|
|
|
@ -231,7 +231,7 @@ case "$host" in
|
|||
;;
|
||||
esac
|
||||
|
||||
if test "${build}" == "${host}"
|
||||
if test "${build}" = "${host}"
|
||||
then
|
||||
AC_CHECK_HEADERS([X11/X.h])
|
||||
fi
|
||||
|
@ -275,7 +275,7 @@ AC_CHECK_HEADERS([FL/Fl_Audio_Meter.H])
|
|||
|
||||
AC_LANG([C])
|
||||
|
||||
if test "${build}" == "${host}"
|
||||
if test "${build}" = "${host}"
|
||||
then
|
||||
case "${host}" in
|
||||
x86_64-*)
|
||||
|
|
|
@ -53,7 +53,7 @@ else
|
|||
cd gsm0610
|
||||
fi
|
||||
|
||||
if [ $1x == --no-exe-runx ]
|
||||
if [ $1x = --no-exe-runx ]
|
||||
then
|
||||
# Run the .exe files, which should be here
|
||||
./FR_A.EXE
|
||||
|
@ -77,7 +77,7 @@ rm -rf READ_FRA.TXT
|
|||
rm -rf ACTION
|
||||
rm -rf unpacked
|
||||
|
||||
if [ $1x == --no-exex ]
|
||||
if [ $1x = --no-exex ]
|
||||
then
|
||||
# We need to prepare the .exe files to be run separately
|
||||
rm -rf *.INP
|
||||
|
|
|
@ -92,7 +92,7 @@ AC_ARG_ENABLE(interlib-deps,
|
|||
[enable_interlib_deps="yes"])
|
||||
|
||||
AC_MSG_NOTICE([enable inter-library dependencies: $enable_interlib_deps])
|
||||
if test "${enable_interlib_deps}" == "yes"; then
|
||||
if test "${enable_interlib_deps}" = "yes"; then
|
||||
link_all_deplibs=yes
|
||||
link_all_deplibs_CXX=yes
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue