diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-28 17:25:31 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-28 17:25:31 +0000 |
| commit | 41fec7149da32662861a246f1109f0006cfb33d1 (patch) | |
| tree | 78f49d70fe2e0acd2a70e9a4c2fa062a858cf02f /ext | |
| parent | 3357455d03dd031187d5831b0dfc27c07e6140e1 (diff) | |
| download | ruby-41fec7149da32662861a246f1109f0006cfb33d1.tar.gz ruby-41fec7149da32662861a246f1109f0006cfb33d1.tar.xz ruby-41fec7149da32662861a246f1109f0006cfb33d1.zip | |
* instruby.rb: fix install directory if destdir and compile_dir are
not in the same drive.
* ext/extmk.rb: ditto.
* win32/Makefile.sub, win32/README.win32, win32/configure.bat,
win32/setup.mak: new configure scheme. use ``configure --prefix=dir''
instead of ``nmake DESTDIR=dir install''.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5336 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/extmk.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb index fe777a4ce..4f2ab88ec 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -149,7 +149,7 @@ def parse_args() end $continue = $mflags.set?(?k) - $mflags |= ["DESTDIR=#{$destdir}"] + $mflags |= ["DESTDIR=#{$destdir}"] unless $destdir.to_s.empty? end parse_args() |
