aboutsummaryrefslogtreecommitdiffstats
path: root/win32/setup.mak
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-11 13:10:29 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-11 13:10:29 +0000
commitbf050c3cd663f0e6e942d03d7025c75bf407fd92 (patch)
tree8acbde0a772fb19fb46acdb1a9f24a22bf654029 /win32/setup.mak
parentf3fcd2e4a0b7680fa1ba813b8f7eb257cce41ec7 (diff)
downloadruby-bf050c3cd663f0e6e942d03d7025c75bf407fd92.tar.gz
* win32/setup.rb, win32/Makefile.sub (PLATFORM): use $(PLATFORM)
instead of $(OS) because ENV["OS"] is used in test-all (drb). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/setup.mak')
-rw-r--r--win32/setup.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/setup.mak b/win32/setup.mak
index 2b5d9c8708..9ca6daa5c6 100644
--- a/win32/setup.mak
+++ b/win32/setup.mak
@@ -123,10 +123,10 @@ runtime_name()
#endif
printf("!endif\n");
if (ver) {
- printf("OS = $$(TARGET_OS)_%s\n", ver);
+ printf("PLATFORM = $$(TARGET_OS)_%s\n", ver);
}
else {
- printf("OS = $$(TARGET_OS)\n");
+ printf("PLATFORM = $$(TARGET_OS)\n");
}
printf("RT = %s\n", base);
return 1;