diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-04 15:47:35 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-04 15:47:35 +0000 |
| commit | 2ea650c54779297d6977f9ab4c4b2066da7483d4 (patch) | |
| tree | f3f3df4d0de645b9fb65456be8a069a975a227f9 | |
| parent | a364cba4874c282b5a4ccd586ad473a56ac58d86 (diff) | |
| download | ruby-2ea650c54779297d6977f9ab4c4b2066da7483d4.tar.gz ruby-2ea650c54779297d6977f9ab4c4b2066da7483d4.tar.xz ruby-2ea650c54779297d6977f9ab4c4b2066da7483d4.zip | |
* ext/extmk.rb: Properly pass the given target to
make(1). [pointed out by eban]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3025 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ext/extmk.rb | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Tue Nov 5 00:46:04 2002 Akinori MUSHA <knu@iDaemons.org> + + * ext/extmk.rb: Properly pass the given target to + make(1). [pointed out by eban] + Mon Nov 4 20:03:53 2002 NAKAMURA Usaku <usa@ruby-lang.org> * instruby.rb, lib/mkmf.rb: use CONFIG["ENABLE_SHARED"] instead of diff --git a/ext/extmk.rb b/ext/extmk.rb index 97310f841..0ed0559e9 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -111,6 +111,7 @@ $dryrun = mflags.include?(?n) unless $message if $message = ARGV.shift and /^[a-z]+$/ =~ $message + $mflags.push($message) $message = $message.sub(/^(?:dist|real)(?=(?:clean)?$)/, '\1') case $message when "clean" |
