diff options
author | Paul Smith <psmith@gnu.org> | 2004-02-23 06:25:54 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2004-02-23 06:25:54 +0000 |
commit | be8c3dbc974c35fac33c8392b89482c10e4f8650 (patch) | |
tree | e410b51327e62cb0dbc0a1bf2ed89fb14fd14904 /tests/scripts/functions/origin | |
parent | fafeb870272fd3b3623d8eb8241c915af39f5855 (diff) | |
download | gunmake-be8c3dbc974c35fac33c8392b89482c10e4f8650.tar.gz |
Numerous fixes: patches for OS/2; core for -f ''; makefile updates.
Diffstat (limited to 'tests/scripts/functions/origin')
-rw-r--r-- | tests/scripts/functions/origin | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/tests/scripts/functions/origin b/tests/scripts/functions/origin index eab2d78..c45a359 100644 --- a/tests/scripts/functions/origin +++ b/tests/scripts/functions/origin @@ -15,13 +15,8 @@ defined per the following list: 'override' defined by override in makefile 'automatic' Automatic variable\n"; -# On WIN32 systems, HOME is meaningless. SystemRoot should be defined -# though. With DJGPP, HOME is not guaranteed to be defined. Use DJDIR -# instead. -# -$homevar = (($port_type eq 'Windows') ? "SystemRoot" - : (($port_type eq 'DOS') ? "DJDIR" - : "HOME")); +# Set an environment variable +$ENV{MAKETEST} = 1; open(MAKEFILE,"> $makefile"); @@ -33,7 +28,7 @@ override WHITE := BLACK all: auto \t\@echo \$(origin undefined) \t\@echo \$(origin CC) -\t\@echo \$(origin $homevar) +\t\@echo \$(origin MAKETEST) \t\@echo \$(origin MAKE) \t\@echo \$(origin foo) \t\@echo \$(origin CFLAGS) |