aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2018-02-23 23:44:22 +0000
committerepochqwert <epoch@hacking.allowed.org>2018-02-23 23:44:22 +0000
commitd5f9021ccae4daa678ce73d3a4aa5ef9010cb0e5 (patch)
tree51afc8112aace5f5a6a4e305c202773dc7549807
parent6aad5cbfbde778e52febdba6ea447c186f081cd6 (diff)
downloadmisc-d5f9021ccae4daa678ce73d3a4aa5ef9010cb0e5.tar.gz
misc-d5f9021ccae4daa678ce73d3a4aa5ef9010cb0e5.zip
delete rebuild.sh because I don't trust it.
-rwxr-xr-xrebuild.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/rebuild.sh b/rebuild.sh
deleted file mode 100755
index f97643f..0000000
--- a/rebuild.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/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
- for j in $i/*.c;do
- jout=$(basename $j | cut -d. -f1)
- gcc -Wall -o $iout/$jout $j
- done
- cp -f $iout/* /usr/local/$iout/
-done
-echo "building and installing tools without compiling..."
-for i in nocompile/*;do
- iout=$(basename $i)
- mkdir -p $iout
- for j in nocompile/$i/* out=$(basename $i);do
- jout=$(basename $j)
- done
- cp -f $i/* /usr/local/$iout/
-done