diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -26,7 +26,7 @@ while [ "x$1" != x ]; do "UPDATE_URL"=*) UPDATE_URL="$(echo "$1" | cut -c 12-)";; --host=*) TARGET="$(echo "$1" | cut -c 8-)";; --host) TARGET="$2"; shift;; - mozilla | chromium | all) TARGET=$1;; + mozilla | chromium) TARGET=$1;; *) echo Ignoring option "'$1'";; esac shift @@ -52,10 +52,9 @@ fi # TODO: automate target detection # Standardize and check browser names -case "${TARGET:-all}" in +case "$TARGET" in mozilla) TARGET=mozilla;; chromium) TARGET=chromium;; - all) TARGET=all;; *) echo Invalid target "'$1'" >&2; exit 2;; esac |