summaryrefslogtreecommitdiffhomepage
path: root/build.sh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-09-10 15:04:42 +0200
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-09-10 15:04:42 +0200
commit319df8440fd47a4fbd5e51a90a6b69d6dd28593d (patch)
treef4dacca4bffb94f6c1968ebfbdf9c5b66a5ca784 /build.sh
parent66ef28e66aafe319ef6fe5e85cc03ee00762d142 (diff)
downloadmidipix_build-319df8440fd47a4fbd5e51a90a6b69d6dd28593d.tar.bz2
midipix_build-319df8440fd47a4fbd5e51a90a6b69d6dd28593d.tar.xz
Adds -d (disable script) and -e (disable script.)
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index a6977fa5..1b4e2b28 100755
--- a/build.sh
+++ b/build.sh
@@ -10,6 +10,8 @@ VALID_BUILD_LEVELS="fetch,extract,build_dir,autoconf,patch,configure,clean,build
while [ ${#} -gt 0 ]; do
case ${1} in
-c) ARG_CLEAN=1; ;;
+-d) disable_build_script_link "${2}"; exit; ;;
+-e) enable_build_script_link "${2}"; exit; ;;
-t*) export ARG_TARBALL=1; [ "${1#-t.}" != "${1}" ] && TARBALL_SUFFIX=${1#-t.}; ;;
-v) export ARG_VERBOSE=1; ;;
-x) ARG_XTRACE=1; set -o xtrace; ;;