summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2014-10-28 19:10:53 +0100
committerRemi Collet <remi@php.net>2014-10-28 19:12:41 +0100
commit36fef6dcd9d9e95127726fcfb231303ca59749b9 (patch)
treecab479d09bf760d81859abc63ee1e4cbd437b03a
parent7561e6b6e32134c6af669cb048eb4bbcb5f5cc4b (diff)
downloadphp-git-36fef6dcd9d9e95127726fcfb231303ca59749b9.tar.gz
fix phpdbg build when src tree != build tree
-rw-r--r--config.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/config.m4 b/config.m4
index 528abb5822..b8aa8526c5 100644
--- a/config.m4
+++ b/config.m4
@@ -22,8 +22,8 @@ if test "$BUILD_PHPDBG" == "" && test "$PHP_PHPDBG" != "no"; then
fi
if test "$PHP_PHPDBG_WEBHELPER" != "no"; then
- if ! test -d ext/phpdbg_webhelper; then
- ln -s ../sapi/phpdbg ext/phpdbg_webhelper
+ if ! test -d $abs_srcdir/ext/phpdbg_webhelper; then
+ ln -s ../sapi/phpdbg $abs_srcdir/ext/phpdbg_webhelper
fi
if test "$PHP_JSON" != "no"; then
PHP_NEW_EXTENSION(phpdbg_webhelper, phpdbg_rinit_hook.c phpdbg_webdata_transfer.c, $ext_shared)