From: John Darrington Date: Sun, 5 Sep 2021 11:01:25 +0000 (+0200) Subject: Windows/build-dependencies: Use correct logical OR operator X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=837f0966a27db45fdf791604db1813ed2b7a78fb Windows/build-dependencies: Use correct logical OR operator --- diff --git a/Windows/build-dependencies b/Windows/build-dependencies index f2e9692167..2ccd4841f7 100755 --- a/Windows/build-dependencies +++ b/Windows/build-dependencies @@ -51,7 +51,7 @@ while test $# -gt 0; do shift 1; done -if test -z "$SANDBOX" || -z "$arch"; then +if test -z "$SANDBOX" -o -z "$arch"; then printf "Usage: $0 --arch= --sandbox= [--tarballs=]\n"; exit 1; fi