From 6469538ca4be2fb442dd322367ee65e9fd0adf0f Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 25 Jan 2009 03:03:00 +0000 Subject: * win32/Makefile.sub (clean-ext): condition of EXTS was inverted. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ win32/Makefile.sub | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2b0d051ec..97df4da13 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Jan 25 12:02:56 2009 Nobuyoshi Nakada + + * win32/Makefile.sub (clean-ext): condition of EXTS was inverted. + Sun Jan 25 11:50:20 2009 Nobuyoshi Nakada * lib/mkmf.rb (create_makefile):fixed the variables order because diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 28542a187..b3862c47c 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -729,7 +729,7 @@ distclean: @-rmdir $(EXTOUT:/=\) clean-ext distclean-ext realclean-ext:: -!if "$(EXTS)" == "" +!if "$(EXTS)" != "" @for %I in ($(EXTS)) \ !else @for /R ext %I in (.) \ -- cgit