From 3d746ac4f02807196373e641b10c8f284ccb7646 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 11 May 2009 18:02:06 +0000 Subject: use $(CURDIR) instead of "..\..\.." because the later does not allow to use options as --with-zlib=../zlib-1.2.3. It seems there is no common way to learn the current directory in Win32 make's: although nmake has MAKEDIR variable, nevertheless Borland make's MAKEDIR is the directory where make is installed, and OpenWatcom wmake has no MAKEDIR at all. --- auto/make | 1 + 1 file changed, 1 insertion(+) (limited to 'auto/make') diff --git a/auto/make b/auto/make index 27f71ecdc..bc3ccc801 100644 --- a/auto/make +++ b/auto/make @@ -22,6 +22,7 @@ CC = $CC CFLAGS = $CFLAGS CPP = $CPP LINK = $LINK +CURDIR = `pwd` END -- cgit