Not all parenthesis are extraneous, after all

This commit is contained in:
Michael Raskin 2013-01-05 22:49:31 +04:00
parent bbc494644f
commit 21e57a0d08

View File

@ -58,10 +58,10 @@ rec {
builder = bootstrapFiles.sh; builder = bootstrapFiles.sh;
args = args =
if (system == "armv5tel-linux" || system == "armv6l-linux" if system == "armv5tel-linux" || system == "armv6l-linux"
|| system == "armv7l-linux") || system == "armv7l-linux"
then ./scripts/unpack-bootstrap-tools-arm.sh then [ ./scripts/unpack-bootstrap-tools-arm.sh ]
else ./scripts/unpack-bootstrap-tools.sh; else [ ./scripts/unpack-bootstrap-tools.sh ];
inherit (bootstrapFiles) bzip2 mkdir curl cpio; inherit (bootstrapFiles) bzip2 mkdir curl cpio;