FS-10875: #resolve Portability issues for non-bash interpreters.

This commit is contained in:
Angel M. Adames 2018-01-09 13:31:32 -04:00
parent 78c189bfcc
commit 6cc029b579
4 changed files with 6 additions and 6 deletions

View File

@ -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)

View File

@ -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-*)

View File

@ -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

View File

@ -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