summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-06 09:37:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-06 09:37:31 +0000
commitd880862d3ee37ff2c4545fcda2884308438b5d17 (patch)
tree6c971c26e79bbc72153d641bf53fd850bb0d135b /Makefile.in
parent5146dccc3b736cbcc7d3e7bc25b1fe9442027a0c (diff)
downloadruby-d880862d3ee37ff2c4545fcda2884308438b5d17.tar.gz
ruby-d880862d3ee37ff2c4545fcda2884308438b5d17.tar.xz
ruby-d880862d3ee37ff2c4545fcda2884308438b5d17.zip
* configure.in, Makefile.in, win32/Makefile.sub (CHDIR): cd using
phisical directory. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22797 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index bdbe36d9b..d258e1ffc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,6 +1,7 @@
SHELL = /bin/sh
NULLCMD = :
RUNCMD = $(SHELL)
+CHDIR = @CHDIR@
exec = exec
#### Start of system configuration section. ####
@@ -174,10 +175,10 @@ uncommon.mk: $(srcdir)/common.mk
sed 's/{\$$([^(){}]*)[^{}]*}//g' $< > $@
config.status: $(srcdir)/configure $(srcdir)/enc/Makefile.in
- MINIRUBY="$(MINIRUBY)" $(SHELL) ./config.status --recheck
+ PWD= MINIRUBY="$(MINIRUBY)" $(SHELL) ./config.status --recheck
$(srcdir)/configure: $(srcdir)/configure.in
- unset PWD; cd $(srcdir) && exec $(AUTOCONF)
+ $(CHDIR) $(srcdir) && exec $(AUTOCONF)
incs: id.h
id.h: parse.h $(srcdir)/tool/generic_erb.rb $(srcdir)/template/id.h.tmpl
@@ -247,11 +248,11 @@ ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP)
$(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -c ext/extinit.c
up::
- @cd "$(srcdir)" && LC_TIME=C exec $(VCSUP)
+ @$(CHDIR) "$(srcdir)" && LC_TIME=C exec $(VCSUP)
update-rubyspec:
@if [ -d $(srcdir)/spec/mspec ]; then \
- cd $(srcdir)/spec/mspec; \
+ $(CHDIR) $(srcdir)/spec/mspec; \
echo updating mspec ...; \
git pull; \
cd ../..; \
@@ -260,7 +261,7 @@ update-rubyspec:
git clone $(MSPEC_GIT_URL) $(srcdir)/spec/mspec; \
fi
@if [ -d $(srcdir)/spec/rubyspec ]; then \
- cd $(srcdir)/spec/rubyspec; \
+ $(CHDIR) $(srcdir)/spec/rubyspec; \
echo updating rubyspec ...; \
git pull; \
else \