diff options
author | Epoch Qwert <epoch@53flpnlls43fcguy.onion> | 2014-11-28 04:36:33 -0600 |
---|---|---|
committer | Epoch Qwert <epoch@53flpnlls43fcguy.onion> | 2014-11-28 04:36:33 -0600 |
commit | 6cb57dcf67bae63bdf7b68dd138e2e0061e3bfaa (patch) | |
tree | fd5905ad5387c453332abcbf420129ab5562eec4 /rebuild.sh | |
parent | a311bc2335bfb676b8a3dbca7b4910ae0923b81e (diff) | |
download | misc-6cb57dcf67bae63bdf7b68dd138e2e0061e3bfaa.tar.gz misc-6cb57dcf67bae63bdf7b68dd138e2e0061e3bfaa.zip |
got rid of the Linux incompatible options passed to /bin/sh
Diffstat (limited to 'rebuild.sh')
-rwxr-xr-x | rebuild.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,8 @@ -#!/bin/sh -vq +#!/bin/sh cd $(dirname $0) rm bin/* rm libexec/* +echo "building and installing tools from sources..." for i in src/*;do iout=$(basename $i) mkdir -p $iout @@ -11,6 +12,7 @@ for i in src/*;do done cp $iout/* /usr/local/$iout/ done +echo "building and installing tools without compiling..." for i in nocompile/*;do iout=$(basename $i) for j in nocompile/$i/* out=$(basename $i);do |