Fixed install-dependencies scripts

This commit is contained in:
Snaipe 2015-09-04 02:51:00 +02:00
parent 16aae06e79
commit 11bacffc15
2 changed files with 5 additions and 5 deletions

View file

@ -1,14 +1,14 @@
git submodule update --init --recursive &&
cd dependencies/dyncall &&
cd dependencies\dyncall &&
mkdir build && cd build &&
cmake -DCMAKE_INSTALL_PREFIX=%LOCAL_INSTALL% %* .. &&
make &&
make install &&
cd ../../../ &&
cd ..\..\.. &&
cd dependencies/libcsptr/ &&
cd dependencies\libcsptr &&
mkdir build && cd build &&
cmake -DCMAKE_INSTALL_PREFIX=%LOCAL_INSTALL% %* .. &&

View file

@ -5,7 +5,7 @@ git submodule update --init --recursive &&
(
cd dependencies/dyncall &&
mkdir build &&
cd $_ &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=$LOCAL_INSTALL "$@" .. &&
make &&
make install
@ -14,7 +14,7 @@ git submodule update --init --recursive &&
(
cd dependencies/libcsptr/ &&
mkdir build &&
cd $_ &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=$LOCAL_INSTALL "$@" .. &&
make &&
make install