* win32/configure.bat: remove quotes from arguments to be quoted.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4fc08fd17d
commit
7afe174b9e
@ -1,4 +1,6 @@
|
|||||||
Wed Nov 17 23:17:22 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Wed Nov 17 23:19:21 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* win32/configure.bat: remove quotes from arguments to be quoted.
|
||||||
|
|
||||||
* lib/mkmf.rb (create_makefile): use forward slashes in messages.
|
* lib/mkmf.rb (create_makefile): use forward slashes in messages.
|
||||||
|
|
||||||
|
@ -45,46 +45,46 @@ if "%1" == "--help" goto :help
|
|||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:srcdir
|
:srcdir
|
||||||
echo>> ~tmp~.mak "srcdir=%2" \
|
echo>> ~tmp~.mak "srcdir=%~2" \
|
||||||
echo>>confargs.tmp --srcdir=%2 \
|
echo>>confargs.tmp --srcdir=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:prefix
|
:prefix
|
||||||
echo>> ~tmp~.mak "prefix=%2" \
|
echo>> ~tmp~.mak "prefix=%~2" \
|
||||||
echo>>confargs.tmp %1=%2 \
|
echo>>confargs.tmp %1=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:pprefix
|
:pprefix
|
||||||
echo>> ~tmp~.mak "RUBY_PREFIX=%2" \
|
echo>> ~tmp~.mak "RUBY_PREFIX=%~2" \
|
||||||
echo>>confargs.tmp %1=%2 \
|
echo>>confargs.tmp %1=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:suffix
|
:suffix
|
||||||
echo>> ~tmp~.mak "RUBY_SUFFIX=%2" \
|
echo>> ~tmp~.mak "RUBY_SUFFIX=%~2" \
|
||||||
echo>>confargs.tmp %1=%2 \
|
echo>>confargs.tmp %1=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:installname
|
:installname
|
||||||
echo>> ~tmp~.mak "RUBY_INSTALL_NAME=%2" \
|
echo>> ~tmp~.mak "RUBY_INSTALL_NAME=%~2" \
|
||||||
echo>>confargs.tmp %1=%2 \
|
echo>>confargs.tmp %1=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:soname
|
:soname
|
||||||
echo>> ~tmp~.mak "RUBY_SO_NAME=%2" \
|
echo>> ~tmp~.mak "RUBY_SO_NAME=%~2" \
|
||||||
echo>>confargs.tmp %1=%2 \
|
echo>>confargs.tmp %1=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:target
|
:target
|
||||||
echo>> ~tmp~.mak "%2" \
|
echo>> ~tmp~.mak "%~2" \
|
||||||
echo>>confargs.tmp --target=%2 \
|
echo>>confargs.tmp --target=%2 \
|
||||||
if "%2" == "x64-mswin64" goto target2
|
if "%~2" == "x64-mswin64" goto target2
|
||||||
if NOT "%2" == "ia64-mswin64" goto target3
|
if NOT "%~2" == "ia64-mswin64" goto target3
|
||||||
:target2
|
:target2
|
||||||
echo>> ~tmp~.mak "TARGET_OS=mswin64" \
|
echo>> ~tmp~.mak "TARGET_OS=mswin64" \
|
||||||
:target3
|
:target3
|
||||||
@ -127,25 +127,25 @@ goto :loop
|
|||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:ntver
|
:ntver
|
||||||
echo>> ~tmp~.mak "NTVER=%2" \
|
echo>> ~tmp~.mak "NTVER=%~2" \
|
||||||
echo>>confargs.tmp %1=%2 \
|
echo>>confargs.tmp %1=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:extout
|
:extout
|
||||||
echo>> ~tmp~.mak "EXTOUT=%2" \
|
echo>> ~tmp~.mak "EXTOUT=%~2" \
|
||||||
echo>>confargs.tmp %1=%2 \
|
echo>>confargs.tmp %1=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:path
|
:path
|
||||||
echo>>pathlist.tmp %2;\
|
echo>>pathlist.tmp %~2;\
|
||||||
echo>>confargs.tmp %1=%2 \
|
echo>>confargs.tmp %1=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
goto :loop
|
goto :loop
|
||||||
:baseruby
|
:baseruby
|
||||||
echo>> ~tmp~.mak "BASERUBY=%2" \
|
echo>> ~tmp~.mak "BASERUBY=%~2" \
|
||||||
echo>>confargs.tmp %1=%2 \
|
echo>>confargs.tmp %1=%2 \
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
|
Loading…
x
Reference in New Issue
Block a user