summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-22 04:03:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-22 04:03:16 +0000
commite99fb3166d2da5ea694f4c5cf27e496e92d3043c (patch)
tree8f0bdebd9e72a88806ce4c28df73bf83abfeae86
parentce1f8cfdad320329360b40924318f368704417c8 (diff)
* Makefile.in (configure): unset PWD to use symlink to building
directory. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@22497 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 326e2c12e1..4a8bdbc121 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Feb 22 13:03:14 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * Makefile.in (configure): unset PWD to use symlink to building
+ directory.
+
Sun Feb 22 01:22:31 2009 URABE Shyouhei <shyouhei@ruby-lang.org>
* Makefile.in (update-rubyspec, test-rubyspec): Catch up to
diff --git a/Makefile.in b/Makefile.in
index 4630d8e63a..121a7cf245 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -158,7 +158,7 @@ config.status: $(srcdir)/configure
MINIRUBY="$(MINIRUBY)" $(SHELL) ./config.status --recheck
$(srcdir)/configure: $(srcdir)/configure.in
- cd $(srcdir) && $(AUTOCONF)
+ unset PWD; cd $(srcdir) && exec $(AUTOCONF)
lex.c: keywords
( gperf -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k1,3,$$ $? > $@.tmp && mv $@.tmp $@ ) || \