From 562e389444efaf983caa22aca0e452f81f165e95 Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 17 Jan 2006 02:11:32 +0000 Subject: * 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 --- win32/Makefile.sub | 4 ++-- win32/setup.mak | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'win32') 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). -- cgit