diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-03 11:07:55 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-03 11:07:55 +0000 |
| commit | ab69bf24bc05ce9f190ed16e86c406aa418d3e74 (patch) | |
| tree | 00b353385b738ee4dcdc61c75779d19c5e8ace15 | |
| parent | 7c37e8502d0d2a7c6c9e93987117860f4870a15a (diff) | |
| download | ruby-ab69bf24bc05ce9f190ed16e86c406aa418d3e74.tar.gz ruby-ab69bf24bc05ce9f190ed16e86c406aa418d3e74.tar.xz ruby-ab69bf24bc05ce9f190ed16e86c406aa418d3e74.zip | |
lib/mkmf.rb (VPATH): use '&&' instead of 'and'.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4033 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | lib/mkmf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 9b01d67c4..59544825c 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -545,7 +545,7 @@ SHELL = /bin/sh srcdir = #{srcdir} topdir = #{$topdir} hdrdir = #{$hdrdir} -VPATH = #{$mingw and CONFIG['build_os'] == 'cygwin' ? '$(shell cygpath -u $(srcdir))' : '$(srcdir)'} +VPATH = #{$mingw && CONFIG['build_os'] == 'cygwin' ? '$(shell cygpath -u $(srcdir))' : '$(srcdir)'} } drive = File::PATH_SEPARATOR == ';' ? /\A\w:/ : /\A/ if destdir = CONFIG["prefix"].scan(drive)[0] and !destdir.empty? |
