diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-01-17 02:11:32 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-01-17 02:11:32 +0000 |
commit | 562e389444efaf983caa22aca0e452f81f165e95 (patch) | |
tree | f49d2b8b3d4f1d7010e23df99db2fc3df6da7346 /win32 | |
parent | 85ac49c3f29718350523108de4ce50b0a439a84a (diff) | |
download | ruby-562e389444efaf983caa22aca0e452f81f165e95.tar.gz ruby-562e389444efaf983caa22aca0e452f81f165e95.tar.xz ruby-562e389444efaf983caa22aca0e452f81f165e95.zip |
* win32/{Makefile.sub,setup.mak}: invoke .bat via shell. workaround
for nmake 8.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9838 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile.sub | 4 | ||||
-rw-r--r-- | win32/setup.mak | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub index a04f614c2..03c4fe3fb 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -43,7 +43,7 @@ YACC = byacc AR = lib -nologo PURIFY = AUTOCONF = autoconf -RM = $(srcdir:/=\)\win32\rm.bat +RM = $(COMSPEC) /C $(srcdir:/=\)\win32\rm.bat !if !defined(PROCESSOR_ARCHITECTURE) PROCESSOR_ARCHITECTURE = x86 @@ -194,7 +194,7 @@ config.status: $(CONFIG_H) $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub @echo Creating config.h - @$(srcdir:/=\)\win32\ifchange.bat config.h << + @$(COMSPEC) /C $(srcdir:/=\)\win32\ifchange.bat config.h << #if _MSC_VER != $(MSC_VER) #error MSC version unmatch #endif diff --git a/win32/setup.mak b/win32/setup.mak index 4d885b7fc..98f72c003 100644 --- a/win32/setup.mak +++ b/win32/setup.mak @@ -153,5 +153,5 @@ $(CPU) = $(PROCESSOR_LEVEL) $(BANG)include $$(srcdir)/win32/Makefile.sub << - @$(srcdir:/=\)\win32\rm.bat config.h config.status + @$(COMSPEC) /C $(srcdir:/=\)\win32\rm.bat config.h config.status @echo type `$(MAKE)' to make ruby for $(OS). |