diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-22 05:44:35 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-22 05:44:35 +0000 |
commit | 6118db67e6e3aaa0ab4311d0e6206bb6260c0dea (patch) | |
tree | a67690cdc824449b01b1a4de3c5295f87a81d148 | |
parent | f5e65768a127468284181b0c38fe839571cb049e (diff) | |
download | ruby-6118db67e6e3aaa0ab4311d0e6206bb6260c0dea.tar.gz ruby-6118db67e6e3aaa0ab4311d0e6206bb6260c0dea.tar.xz ruby-6118db67e6e3aaa0ab4311d0e6206bb6260c0dea.zip |
* Makefile.in, bcc32/Makefile.sub, win32/Makefile.sub: terminate options.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5807 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | bcc32/Makefile.sub | 2 | ||||
-rw-r--r-- | win32/Makefile.sub | 2 |
4 files changed, 6 insertions, 4 deletions
@@ -1,7 +1,9 @@ -Sun Feb 22 14:33:32 2004 Nobuyoshi Nakada <nobu@ruby-lang.org> +Sun Feb 22 14:44:28 2004 Nobuyoshi Nakada <nobu@ruby-lang.org> * ext/extmk.rb: $extstatic is Array or nil now. [ruby-talk:93383] + * Makefile.in, bcc32/Makefile.sub, win32/Makefile.sub: terminate options. + Sun Feb 22 13:05:37 2004 akira yamada <akira@ruby-lang.org> * lib/uri/mailto.rb (URI::MailTo::to_s): should include fragment. diff --git a/Makefile.in b/Makefile.in index bd626c4f1..b616bef80 100644 --- a/Makefile.in +++ b/Makefile.in @@ -119,7 +119,7 @@ SCRIPT_ARGS = --dest-dir="$(DESTDIR)" \ --make="$(MAKE)" \ --mflags="$(MFLAGS)" \ --make-flags="$(MAKEFLAGS)" -EXTMK_ARGS = $(SCRIPT_ARGS) --extout="$(EXTOUT)" --extension $(EXTS) --extstatic $(EXTSTATIC) +EXTMK_ARGS = $(SCRIPT_ARGS) --extout="$(EXTOUT)" --extension $(EXTS) --extstatic $(EXTSTATIC) -- all: @MAKEFILES@ miniruby$(EXEEXT) rbconfig.rb $(LIBRUBY) @$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index b8ff2d4de..75f147c7a 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -214,7 +214,7 @@ SCRIPT_ARGS = "--dest-dir=$(DESTDIR)" \ "--make=$(MAKE)" \ "--mflags=$(MFLAGS)" \ "--make-flags=$(MAKEFLAGS)" -EXTMK_ARGS = $(SCRIPT_ARGS) --extout="$(EXTOUT)" --extension $(EXTS) --extstatic $(EXTSTATIC) +EXTMK_ARGS = $(SCRIPT_ARGS) --extout="$(EXTOUT)" --extension $(EXTS) --extstatic $(EXTSTATIC) -- all: miniruby$(EXEEXT) rbconfig.rb \ $(LIBRUBY) $(MISCLIBS) diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 73cd67e53..0490003c7 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -207,7 +207,7 @@ SCRIPT_ARGS = "--dest-dir=$(DESTDIR)" \ "--make=$(MAKE)" \ "--mflags=$(MFLAGS)" \ "--make-flags=$(MAKEFLAGS)" -EXTMK_ARGS = $(SCRIPT_ARGS) --extout="$(EXTOUT)" --extension $(EXTS) --extstatic $(EXTSTATIC) +EXTMK_ARGS = $(SCRIPT_ARGS) --extout="$(EXTOUT)" --extension $(EXTS) --extstatic $(EXTSTATIC) -- all: ext miniruby$(EXEEXT) rbconfig.rb \ $(LIBRUBY) $(MISCLIBS) |