wayneeseguin-rvm 0.0.39 → 0.0.40
Sign up to get free protection for your applications and to get access to all the features.
- data/rvm.gemspec +1 -1
- data/scripts/rvm-ruby-installer +6 -3
- data/scripts/rvm-utility +1 -0
- metadata +1 -1
data/rvm.gemspec
CHANGED
data/scripts/rvm-ruby-installer
CHANGED
@@ -89,10 +89,13 @@ function __rvm_install-source {
|
|
89
89
|
elif [ -s ./configure ] ; then
|
90
90
|
__rvm_log "info" "\tConfiguring $rvm_ruby_package_name using $rvm_ruby_configure, this may take a while depending on your cpu(s)..."
|
91
91
|
if [ -d $rvm_path/usr/include/readline/ ] ; then
|
92
|
-
|
93
|
-
|
94
|
-
|
92
|
+
parameters="$parameters --with-readline-dir=$rvm_path/usr/include/readline/"
|
93
|
+
fi
|
94
|
+
if [ -d $rvm_path/usr/include/iconv/ ] ; then
|
95
|
+
parameters="$parameters --with-iconv-dir=$rvm_path/usr/include/iconv/"
|
95
96
|
fi
|
97
|
+
__rvm_run "configure" "./configure --prefix=$rvm_ruby_home --enable-shared=true $rvm_ruby_configure $parameters"
|
98
|
+
unset parameters
|
96
99
|
if [ $? -gt 0 ] ; then status=$? ; return $status ; fi
|
97
100
|
else
|
98
101
|
__rvm_log "error" "\tSkipping configure step, 'configure' script does not exist, did autoconf not run successfully?"
|
data/scripts/rvm-utility
CHANGED