* Fixed shell syntax (if "foo" = "bar" instead of if test "foo" = "bar").

git-svn-id: svn://svn.zoy.org/elk/trunk@202 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
sam 2003-09-26 15:57:43 +00:00
parent 8959736e63
commit 7d9cacb04c
1 changed files with 2 additions and 2 deletions

View File

@ -462,7 +462,7 @@ AC_CHECK_LIB(Xmu, XmuDrawLogo,
[xmu_libraries=""],
[[-lXt -lSM -lICE -lXext -lX11 -L${x_libraries}]])
if "${cross_compile}" = "no"; then
if test "${cross_compile}" = "no"; then
AC_CHECK_LIB(Xaw, XawTextSearch,
[ac_cv_my_have_xaw=yes
XAW_CFLAGS="-I${x_includes}"
@ -476,7 +476,7 @@ AM_CONDITIONAL(HAVE_XAW, test "${ac_cv_my_have_xaw}" = "yes")
AC_SUBST(XAW_CFLAGS)
AC_SUBST(XAW_LIBS)
if "${cross_compile}" = "no"; then
if test "${cross_compile}" = "no"; then
AC_CHECK_LIB(Xm, XmStringConcat,
[ac_cv_my_have_motif=yes
MOTIF_CFLAGS="-I${x_includes} -I/usr/include/Xm"