提交 c135279e authored 作者: Angel M. Adames's avatar Angel M. Adames 提交者: Mike Jerris

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

上级 cf25badf
......@@ -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
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论