From 7487494410d15ec2c6789193214b7e2f62fd279f Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Tue, 30 Jul 2002 22:12:16 +0000 Subject: [PATCH] Added test for HOME. --- config/CONFIG_HOST_ARCH.Borland | 5 ++++- config/CONFIG_HOST_ARCH.WIN32 | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/config/CONFIG_HOST_ARCH.Borland b/config/CONFIG_HOST_ARCH.Borland index 180a6ad60..721375226 100644 --- a/config/CONFIG_HOST_ARCH.Borland +++ b/config/CONFIG_HOST_ARCH.Borland @@ -24,6 +24,9 @@ ECHO=echo WIND_HOST_TYPE = x86-win32 -# Use std path variables from ms +# Does not work if using cygwin make +# because HOME is always defined +ifndef HOME HOME = $(HOMEDRIVE)$(HOMEPATH) +endif diff --git a/config/CONFIG_HOST_ARCH.WIN32 b/config/CONFIG_HOST_ARCH.WIN32 index 2f2374197..1e87a12ae 100644 --- a/config/CONFIG_HOST_ARCH.WIN32 +++ b/config/CONFIG_HOST_ARCH.WIN32 @@ -23,6 +23,9 @@ ECHO=echo WIND_HOST_TYPE = x86-win32 -# Use std path variables from ms +# Does not work if using cygwin make +# because HOME is always defined +ifndef HOME HOME = $(HOMEDRIVE)$(HOMEPATH) +endif