summaryrefslogtreecommitdiff
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
commit2a413f97a497b2e86a0523b5c849e3fc075e887c (patch)
tree6c971c26e79bbc72153d641bf53fd850bb0d135b /Makefile.in
parent9c14f3beeecb9b369c63ec8c5279ed99cb8d96f6 (diff)
* 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 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index bdbe36d9bd..d258e1ffcf 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 \