summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-10-03 15:07:41 +0000
committerSascha Schumann <sas@php.net>1999-10-03 15:07:41 +0000
commit27fb752fce2a0100e1754d1a36b9c7846910c11b (patch)
treedfdb19a1ffe7829e81ad13ed53dc16c7dfaf0d66
parent079d9711ac3b91cb796eaa4517b5753fb2eb724a (diff)
downloadphp-git-27fb752fce2a0100e1754d1a36b9c7846910c11b.tar.gz
*_config are executable, thus we don't need %(SHELL)
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
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