summaryrefslogtreecommitdiffhomepage
path: root/build.sh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-07-10 22:17:48 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-07-10 23:30:11 +0000
commit49ffbe6ed6b69b04944d7a1ef8164f3920fc7507 (patch)
tree3bd13e98c3aaa7479371ca264ab0d3294dc9a52d /build.sh
parent0b4cf4e225d536df806b5e448998821728f3d5b8 (diff)
downloadmidipix_build-49ffbe6ed6b69b04944d7a1ef8164f3920fc7507.tar.bz2
midipix_build-49ffbe6ed6b69b04944d7a1ef8164f3920fc7507.tar.xz
Adds rxvt-unicode v9.22, xeyes v1.1.1 and xwd v1.0.6 and their dependencies libICE v1.0.9, libSM v1.2.2, libxkbfile v1.0.9, libXaw v1.0.13, libXext v1.3.3, libXmu v1.1.2, libXpm v3.5.11, libXt v1.1.5, and renderproto v0.11.1.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/build.sh b/build.sh
index 067ec244..243fa7a7 100755
--- a/build.sh
+++ b/build.sh
@@ -18,10 +18,6 @@ case ${1} in
-r) [ -n "${ARG_RESTART_SCRIPT}" ] && exec cat build.usage;
if [ "${2#*:*}" != "${2}" ]; then
ARG_RESTART_SCRIPT="${2%%:*}"; ARG_RESTART_SCRIPT_AT="${2##*:}";
- if [ ! -e "${ARG_RESTART_SCRIPT}" ]; then
- log_msg fail "Error: unknown build script specified.";
- exec cat build.usage;
- fi;
if [ "${ARG_RESTART_SCRIPT_AT}" != diff ]; then
for __ in $(split , "${ARG_RESTART_SCRIPT_AT}"); do
if ! match_list "${VALID_BUILD_LEVELS}" , "${__}"; then
@@ -32,7 +28,12 @@ case ${1} in
fi;
else
ARG_RESTART_SCRIPT="${2}"; ARG_RESTART_SCRIPT_AT=ALL;
- fi; shift; ;;
+ fi;
+ if [ ! -e "${ARG_RESTART_SCRIPT}" ]; then
+ log_msg fail "Error: unknown build script specified.";
+ exec cat build.usage;
+ fi;
+ shift; ;;
*=*) set_var_unsafe "${1%%=*}" "${1#*=}"; ;;
*) exec cat build.usage; ;;
esac; shift; done;