From: Pierre Joye Date: Mon, 24 Aug 2009 14:18:19 +0000 (+0000) Subject: - fix object dir usage (ie: relative path called from a symlinked dir), also fix... X-Git-Tag: php-5.4.0alpha1~191^2~2770 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d62d24f19297177d92338725452ed2476616216;p=php - fix object dir usage (ie: relative path called from a symlinked dir), also fix nmake test for similar cases --- diff --git a/win32/build/config.w32 b/win32/build/config.w32 index 4f87ec3704..1f8bc3ce3a 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -82,6 +82,7 @@ if (VCVERS > 1200) { // stick objects somewhere outside of the source tree ARG_ENABLE('object-out-dir', 'Alternate location for binary objects during build', ''); if (PHP_OBJECT_OUT_DIR.length) { + PHP_OBJECT_OUT_DIR = FSO.GetAbsolutePathName(PHP_OBJECT_OUT_DIR); if (!FSO.FolderExists(PHP_OBJECT_OUT_DIR)) { ERROR('you chosen output directory ' + PHP_OBJECT_OUT_DIR + ' does not exist'); }