diff options
author | Remi Collet <remi@php.net> | 2014-10-28 19:10:53 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2014-10-28 19:12:41 +0100 |
commit | 9028846c6315903a4d43f436aced67ca1d345e69 (patch) | |
tree | ce3a56c3081ab2eccd87f4a904e91b790bebf7d5 /sapi/phpdbg | |
parent | 2a24763f6c92886cef12bff76f7745c1a9f9cf78 (diff) | |
download | php-git-9028846c6315903a4d43f436aced67ca1d345e69.tar.gz |
fix phpdbg build when src tree != build tree
Diffstat (limited to 'sapi/phpdbg')
-rw-r--r-- | sapi/phpdbg/config.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/phpdbg/config.m4 b/sapi/phpdbg/config.m4 index 528abb5822..b8aa8526c5 100644 --- a/sapi/phpdbg/config.m4 +++ b/sapi/phpdbg/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) |