mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (create_makefile): default FLAGS to empty strings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2306 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bf1f97ae3f
commit
014c5da903
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Mar 29 20:21:58 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
|
||||
|
||||
* lib/mkmf.rb (create_makefile): default FLAGS to empty strings.
|
||||
|
||||
Fri Mar 29 16:36:52 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
|
||||
|
||||
* lib/mkmf.rb (arg_config): should use Shellwords::shellwords like
|
||||
|
|
|
@ -617,9 +617,9 @@ $defs = []
|
|||
|
||||
$make = with_config("make-prog", ENV["MAKE"] || "make")
|
||||
|
||||
$CFLAGS = with_config("cflags", arg_config("CFLAGS"))
|
||||
$CPPFLAGS = with_config("cppflags", arg_config("CPPFLAGS"))
|
||||
$LDFLAGS = with_config("ldflags", arg_config("LDFLAGS"))
|
||||
$CFLAGS = with_config("cflags", arg_config("CFLAGS", ""))
|
||||
$CPPFLAGS = with_config("cppflags", arg_config("CPPFLAGS", ""))
|
||||
$LDFLAGS = with_config("ldflags", arg_config("LDFLAGS", ""))
|
||||
$LIBPATH = []
|
||||
|
||||
dir_config("opt")
|
||||
|
|
Loading…
Add table
Reference in a new issue