Make sys/build.sh accept custom configure flags

This commit is contained in:
pancake 2017-01-22 23:45:15 +01:00
parent 67b5d07514
commit c5695c2fb9

View file

@ -37,6 +37,10 @@ case "$1" in
'')
:
;;
-)
shift
CFGARG="${CFGARG} $*"
;;
*)
PREFIX="$1"
;;