diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-05 22:10:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-05 22:26:17 +0300 |
commit | 5f96a4e54f48cc92fd844ceceac7980e4922f3fe (patch) | |
tree | 5b1986598d11f312f02b68352ea537664f88d0ff /build.sh | |
parent | 0286f10d285d54a116315a8e0cb1714359685d42 (diff) | |
download | evol-hercules-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.tar.gz evol-hercules-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.tar.bz2 evol-hercules-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.tar.xz evol-hercules-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.zip |
Change build script to build in build directory.
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ #!/bin/bash +mkdir build autoreconf -i -./configure +cd build +../configure make -j3 +cd - |