From: Remi Collet Date: Tue, 28 Oct 2014 18:10:53 +0000 (+0100) Subject: fix phpdbg build when src tree != build tree X-Git-Tag: php-5.6.3RC1~20^2~2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36fef6dcd9d9e95127726fcfb231303ca59749b9;p=php fix phpdbg build when src tree != build tree --- 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)