diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-22 03:56:37 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-22 03:56:37 +0000 |
| commit | 663e2c8e12c89fbe99cf68e41bb266d5bc5054a8 (patch) | |
| tree | ac7364b27bd87c0388cd07db11511f2556ecb3d2 | |
| parent | a4a3293fb9ed377944ee49e8d80b111df42bbfc8 (diff) | |
| download | ruby-663e2c8e12c89fbe99cf68e41bb266d5bc5054a8.tar.gz ruby-663e2c8e12c89fbe99cf68e41bb266d5bc5054a8.tar.xz ruby-663e2c8e12c89fbe99cf68e41bb266d5bc5054a8.zip | |
* Makefile.in (up): cd doesn't need LC_TIME, VCS needs.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22496 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sun Feb 22 12:56:35 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * Makefile.in (up): cd doesn't need LC_TIME, VCS needs. + Sun Feb 22 10:43:57 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * vm_eval.c (method_missing): should not pop cfp if missing method diff --git a/Makefile.in b/Makefile.in index 7549a6e62..6f9c8847e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -243,7 +243,7 @@ ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP) $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -c ext/extinit.c up:: - @LC_TIME=C cd "$(srcdir)" && $(VCSUP) + @cd "$(srcdir)" && LC_TIME=C exec $(VCSUP) update-rubyspec: @if [ -d $(srcdir)/spec/mspec ]; then \ |
