diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-25 23:36:48 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-25 23:36:48 +0000 |
| commit | d0aeee74c9b57f0505fbb6cb9e435a880a097f71 (patch) | |
| tree | 6343bb4b9d9c0d80603af6ab4aa2b0ec116f0e1f | |
| parent | 48f3c394ec013edf4aea84b53ab935e3745f049c (diff) | |
| download | ruby-d0aeee74c9b57f0505fbb6cb9e435a880a097f71.tar.gz ruby-d0aeee74c9b57f0505fbb6cb9e435a880a097f71.tar.xz ruby-d0aeee74c9b57f0505fbb6cb9e435a880a097f71.zip | |
* Makefile.in (ext/extinit.o): use $(OUTFLAG) as well as other
objects. [ruby-Bugs-14228]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13515 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Wed Sep 26 08:36:31 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * Makefile.in (ext/extinit.o): use $(OUTFLAG) as well as other + objects. [ruby-Bugs-14228] + Wed Sep 26 05:12:17 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> * parse.y (parser_yyerror): limit error message length. diff --git a/Makefile.in b/Makefile.in index 36c26e017..4c110cd90 100644 --- a/Makefile.in +++ b/Makefile.in @@ -188,4 +188,4 @@ distclean-local:: @$(RM) ext/config.cache $(RBCONFIG) ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP) - $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -o$@ -c ext/extinit.c + $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(OUTFLAG)$@ -c ext/extinit.c |
