summaryrefslogtreecommitdiff
path: root/win32/Makefile.sub
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-17 02:08:33 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-17 02:08:33 +0000
commit1aada80f78a40dfc0991aa6155cb7d03079e1f0a (patch)
tree58a5d3e74fc61d3441019a6fcaef8247dc27d95c /win32/Makefile.sub
parentbac69d798d279e4ad29ab4e1cd0f2fafbb6f9bab (diff)
* win32/Makefile.sub: invoke .bat via shell. workaround for nmake 8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/Makefile.sub')
-rw-r--r--win32/Makefile.sub6
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 613297950d..0c48ba8bbe 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -50,7 +50,7 @@ YFLAGS = -o y.tab.c
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
@@ -197,7 +197,7 @@ rubyw: $(WPROGRAM)
!include $(srcdir)/common.mk
$(MKFILES): $(srcdir)/win32/Makefile.sub $(srcdir)/win32/configure.bat $(srcdir)/win32/setup.mak
- $(srcdir:/=\)\win32\configure.bat $(configure_args)
+ $(COMSPEC) /C $(srcdir:/=\)\win32\configure.bat $(configure_args)
@echo $(MKFILES) should be updated, re-run $(MAKE).
CONFIG_H = ./.config.h.time
@@ -211,7 +211,7 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub
!if exist(config.h)
@copy config.h config.h.old > nul
!endif
- @$(srcdir:/=\)\win32\ifchange.bat config.h <<
+ @$(COMSPEC) /C $(srcdir:/=\)\win32\ifchange.bat config.h <<
#if _MSC_VER != $(MSC_VER)
#error MSC version unmatch
#endif