summaryrefslogtreecommitdiffhomepage
path: root/build.sh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-06-06 13:22:57 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-06-06 18:10:32 +0000
commit7b01b590b0a0d007eae1d07c2cd8c60ffe1685b9 (patch)
treeb432cc7729e38581e10865731b8ad9b9d63e1790 /build.sh
parent698a323c9dae93d0a34a8294977bd20a5c6a7b1d (diff)
downloadmidipix_build-7b01b590b0a0d007eae1d07c2cd8c60ffe1685b9.tar.bz2
midipix_build-7b01b590b0a0d007eae1d07c2cd8c60ffe1685b9.tar.xz
build.sh, etc/build.usage: adds --debug-minipix: override default behaviour of strip(1)ping minipix/bin/*.
subr/post_strip.subr: strip(1) minipix/bin/* unless --debug-minipix was specified (via midipix.) vars/build.vars: adds `minipix' target individually and as part of `world' encompassing all minipix-flavoured packages.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index d7ee1566..8eb7b541 100755
--- a/build.sh
+++ b/build.sh
@@ -16,6 +16,8 @@ case ${1} in
-N) ARG_OFFLINE=1; ;;
-i) ARG_IGNORE_SHA256SUMS=1; ;;
-R) ARG_RELAXED=1; ;;
+--debug-minipix)
+ ARG_DEBUG_MINIPIX=1; ;;
-t*) ARG_TARBALL=1; [ "${1#-t.}" != "${1}" ] && TARBALL_SUFFIX="${1#-t.}"; ;;
-v) ARG_VERBOSE=1; ;;
-x) ARG_XTRACE=1; set -o xtrace; ;;
@@ -30,7 +32,7 @@ case ${1} in
fi;
BUILD_PACKAGES_RESTART="$(echo ${ARG_RESTART} | sed "s/,/ /g")";
shift; ;;
-host_toolchain|native_toolchain|runtime|lib_packages|leaf_packages|devroot|world)
+host_toolchain|native_toolchain|runtime|lib_packages|leaf_packages|minipix|devroot|world)
BUILD_TARGETS_META="${BUILD_TARGETS_META:+${BUILD_TARGETS_META} }${1}"; ;;
*=*) set_var_unsafe "${1%%=*}" "${1#*=}"; ;;
*) exec cat etc/build.usage; ;;