From feffaea92bf1319fa92622468a128464eabcbaee Mon Sep 17 00:00:00 2001 From: "bryner%netscape.com" Date: Mon, 8 Apr 2002 08:10:18 +0000 Subject: [PATCH] Yet another fix for win32 gmake builds, this time for the case where the mozilla build directory is not under a /cygdrive/ path. r=cls, a=asa. --- configure.in | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configure.in b/configure.in index e63b18fc0ab..8f7f9506490 100644 --- a/configure.in +++ b/configure.in @@ -962,9 +962,7 @@ case "$target" in AC_DEFINE(NO_X11) dnl Remove cygwinism from MOZ_BUILD_ROOT - if test `echo $MOZ_BUILD_ROOT | grep -c ^/cygdrive/` != 0; then - MOZ_BUILD_ROOT=`echo $MOZ_BUILD_ROOT | sed -e 's|^/cygdrive/||' -e 's|/|:/|'` - fi + MOZ_BUILD_ROOT=`cygpath -w $MOZ_BUILD_ROOT | sed -e 's|\\\\|/|g'` if test "$MOZ_TOOLS"; then MOZ_TOOLS_DIR=`cd $MOZ_TOOLS && pwd`