Skip to content

Commit

Permalink
* Makefile.in (clean-ext): get rid of failure.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Nov 9, 2009
1 parent e8e477f commit c7c3ed4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ChangeLog
@@ -1,4 +1,6 @@
Mon Nov 9 11:28:29 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
Mon Nov 9 11:38:27 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>

* Makefile.in (clean-ext): get rid of failure.

* configure.in (warnflags): add -Wno-long-long.

Expand Down
2 changes: 1 addition & 1 deletion Makefile.in
Expand Up @@ -182,7 +182,7 @@ clean-ext distclean-ext realclean-ext::
dir=`dirname "$$mk"`; \
echo $(@:-ext=)ing `expr "$$dir" : 'ext/\(.*\)'`; \
(cd "$$dir"; $(MAKE) $(MFLAGS) $(@:-ext=)) && \
test $@ != clean-ext && rmdir -p "$$dir" 2> /dev/null; \
test $@ = clean-ext || rmdir -p "$$dir" 2> /dev/null; \
done

ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP)
Expand Down

0 comments on commit c7c3ed4

Please sign in to comment.