diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-06 09:37:31 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-06 09:37:31 +0000 |
commit | 2a413f97a497b2e86a0523b5c849e3fc075e887c (patch) | |
tree | 6c971c26e79bbc72153d641bf53fd850bb0d135b /win32/Makefile.sub | |
parent | 9c14f3beeecb9b369c63ec8c5279ed99cb8d96f6 (diff) | |
download | ruby-2a413f97a497b2e86a0523b5c849e3fc075e887c.tar.gz |
* configure.in, Makefile.in, win32/Makefile.sub (CHDIR): cd using
phisical directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22797 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/Makefile.sub')
-rw-r--r-- | win32/Makefile.sub | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub index c495152e6c..aede5357e0 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -4,6 +4,7 @@ SHELL = $(COMSPEC) RUNCMD = $(COMSPEC) /c MKFILES = Makefile NULL = nul +CHDIR = cd !ifndef MFLAGS MFLAGS=-l @@ -301,7 +302,7 @@ ruby: $(PROGRAM) rubyw: $(WPROGRAM) up:: - @(set LC_TIME=C & $(VCSUP) "$(srcdir)") + @cd "$(srcdir:/=\)" && set LC_TIME=C && $(VCSUP) !include $(srcdir)/common.mk |