mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/Makefile.sub (clean-ext): condition of EXTS was inverted.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cdaadbd903
commit
0243b1d29c
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Sun Jan 25 12:02:56 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* win32/Makefile.sub (clean-ext): condition of EXTS was inverted.
|
||||||
|
|
||||||
Sun Jan 25 11:50:20 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sun Jan 25 11:50:20 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* lib/mkmf.rb (create_makefile):fixed the variables order because
|
* lib/mkmf.rb (create_makefile):fixed the variables order because
|
||||||
|
|
|
@ -729,7 +729,7 @@ distclean:
|
||||||
@-rmdir $(EXTOUT:/=\)
|
@-rmdir $(EXTOUT:/=\)
|
||||||
|
|
||||||
clean-ext distclean-ext realclean-ext::
|
clean-ext distclean-ext realclean-ext::
|
||||||
!if "$(EXTS)" == ""
|
!if "$(EXTS)" != ""
|
||||||
@for %I in ($(EXTS)) \
|
@for %I in ($(EXTS)) \
|
||||||
!else
|
!else
|
||||||
@for /R ext %I in (.) \
|
@for /R ext %I in (.) \
|
||||||
|
|
Loading…
Reference in a new issue