From: Sascha Schumann Date: Sun, 3 Oct 1999 15:07:41 +0000 (+0000) Subject: *_config are executable, thus we don't need %(SHELL) X-Git-Tag: php-4.0b3_RC2~356 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27fb752fce2a0100e1754d1a36b9c7846910c11b;p=php *_config are executable, thus we don't need %(SHELL) --- diff --git a/configure.in b/configure.in index 4a6ac39353..75a8594bea 100644 --- a/configure.in +++ b/configure.in @@ -192,7 +192,7 @@ if test -d /usr/pkg/include -a -d /usr/pkg/lib ; then fi INCLUDES="-I\$(top_builddir)/libzend -I\$(top_builddir)/TSRM" -EXTRA_LIBS="$EXTRA_LIBS \`\$(SHELL) $cwd/libzend/zend_config --libs\`" +EXTRA_LIBS="$EXTRA_LIBS \`$cwd/libzend/zend_config --libs\`" AC_SUBST(INCLUDES) AC_CHECK_LIB(nsl, gethostname, [ @@ -616,7 +616,7 @@ AC_ARG_ENABLE(thread-safety, if test "$enableval" = "yes"; then TSRM_LIB='TSRM/libtsrm.a' TSRM_DIR=TSRM - EXTRA_LIBS="$EXTRA_LIBS \$(TSRM_DIR)/libtsrm.a \`\$(SHELL) \$(TSRM_DIR)/tsrm_config --libs\`" + EXTRA_LIBS="$EXTRA_LIBS \$(TSRM_DIR)/libtsrm.a \`\$(TSRM_DIR)/tsrm_config --libs\`" AC_DEFINE(ZTS) AC_MSG_RESULT(yes) else