Browse Source

Move mono into prefix folder, check folder contents

Hamilton Turner 11 years ago
parent
commit
2f3c8c20a6
1 changed files with 3 additions and 1 deletions
  1. 3 1
      toolset/setup/linux/languages/mono.sh

+ 3 - 1
toolset/setup/linux/languages/mono.sh

@@ -10,11 +10,13 @@ RETCODE=$(fw_exists mono-3.2.8.installed)
 fw_get http://download.mono-project.com/sources/mono/mono-3.2.8.tar.bz2 -O mono-3.2.8.tar.bz2
 fw_untar mono-3.2.8.tar.bz2
 cd mono-3.2.8 
-./configure --disable-nls --prefix=/usr/local
+./configure --disable-nls --prefix=`pwd`/mono-3.2.8-install
 make get-monolite-latest
 make -j4 EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/basic.exe
 sudo make install
 
+ls -laR .
+
 sudo apt-get -y install mono-devel
 echo "Installing RootCAs from Mozilla..."; 
 mozroots --import --sync;