aboutsummaryrefslogtreecommitdiffstats
path: root/rebuild.sh
diff options
context:
space:
mode:
authorEpoch Qwert <epoch@53flpnlls43fcguy.onion>2014-11-28 04:36:33 -0600
committerEpoch Qwert <epoch@53flpnlls43fcguy.onion>2014-11-28 04:36:33 -0600
commit6cb57dcf67bae63bdf7b68dd138e2e0061e3bfaa (patch)
treefd5905ad5387c453332abcbf420129ab5562eec4 /rebuild.sh
parenta311bc2335bfb676b8a3dbca7b4910ae0923b81e (diff)
downloadmisc-6cb57dcf67bae63bdf7b68dd138e2e0061e3bfaa.tar.gz
misc-6cb57dcf67bae63bdf7b68dd138e2e0061e3bfaa.zip
got rid of the Linux incompatible options passed to /bin/sh
Diffstat (limited to 'rebuild.sh')
-rwxr-xr-xrebuild.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/rebuild.sh b/rebuild.sh
index 4c0d77c..21c8b65 100755
--- a/rebuild.sh
+++ b/rebuild.sh
@@ -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