@@ -30,11 +30,11 @@ dnl Find the appropriate libraries to link to AC_SEARCH_LIBS(acos, m,, [ AC_MSG_WARN([Couldn't find acos (normally in libm)!]) ]) AC_SEARCH_LIBS(dlsym, dl,, [ AC_MSG_WARN([Couldn't find dlsym (normally in libdl)!]) ]) -if test "x$TARGET" = "tclkit"; then +if test "$TARGET" = "tclkit"; then dnl Figure out how to statically link to libgcc, if needed DC_STATIC_LIBGCC else dnl We have KitDLL @@ -98,11 +98,11 @@ CFLAGS="${CFLAGS} -I${with_zlib}/include -I${with_zlib}" LDFLAGS="${LDFLAGS} -L${with_zlib}/lib -L${with_zlib}" ]) dnl Only needed for Tclkit -if test "x$TARGET" = "tclkit"; then +if test "$TARGET" = "tclkit"; then DC_DO_STATIC_LINK_LIB(zlib, -lz,, [ DC_DO_STATIC_LINK_LIB(zlib, -lzlib,, [ AC_SEARCH_LIBS(inflate, z zlib,, [ AC_MSG_WARN([Couldn't find inflate (normally in zlib)!]) ]) @@ -151,11 +151,11 @@ esac ]) AC_MSG_RESULT([$storage_mech]) dnl Verify sanity of storage mechanism -if ! test "x$TARGET" = "tclkit"; then +if ! test "$TARGET" = "tclkit"; then case "$storage_mech" in auto|cvfs) true ;; *)