From 3ed51be395a15ed4a8f7ff7a3c7b84a4022df57f Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Thu, 15 Aug 2013 14:02:10 +0100 Subject: [PATCH] Make DMAKE import everything from the environment like NMAKE does We already imported WIN64, CCHOME and a couple of others. It is useful to have CCTYPE and GCCCROSS as well, and in fact we may as well simply import everything since that is what NMAKE does anyway. --- win32/makefile.mk | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/win32/makefile.mk b/win32/makefile.mk index 7e0e974..97295f7 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -13,6 +13,11 @@ ## Make sure you read README.win32 *before* you mess with anything here! ## +# +# Import everything from the environment like NMAKE does. +# +.IMPORT : .EVERYTHING + ## ## Build configuration. Edit the values below to suit your needs. ## @@ -303,8 +308,6 @@ BUILDOPT += -DPERL_IMPLICIT_CONTEXT BUILDOPT += -DPERL_IMPLICIT_SYS .ENDIF -.IMPORT .IGNORE : PROCESSOR_ARCHITECTURE PROCESSOR_ARCHITEW6432 WIN64 CCHOME - PROCESSOR_ARCHITECTURE *= x86 .IF "$(WIN64)" == "" -- 2.7.4