From 3d62d24f19297177d92338725452ed2476616216 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Mon, 24 Aug 2009 14:18:19 +0000 Subject: [PATCH] - fix object dir usage (ie: relative path called from a symlinked dir), also fix nmake test for similar cases --- win32/build/config.w32 | 1 + 1 file changed, 1 insertion(+) 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'); } -- 2.50.1