forked from mirrors/nixpkgs
Not all parenthesis are extraneous, after all
This commit is contained in:
parent
bbc494644f
commit
21e57a0d08
|
@ -58,10 +58,10 @@ rec {
|
|||
builder = bootstrapFiles.sh;
|
||||
|
||||
args =
|
||||
if (system == "armv5tel-linux" || system == "armv6l-linux"
|
||||
|| system == "armv7l-linux")
|
||||
then ./scripts/unpack-bootstrap-tools-arm.sh
|
||||
else ./scripts/unpack-bootstrap-tools.sh;
|
||||
if system == "armv5tel-linux" || system == "armv6l-linux"
|
||||
|| system == "armv7l-linux"
|
||||
then [ ./scripts/unpack-bootstrap-tools-arm.sh ]
|
||||
else [ ./scripts/unpack-bootstrap-tools.sh ];
|
||||
|
||||
inherit (bootstrapFiles) bzip2 mkdir curl cpio;
|
||||
|
||||
|
|
Loading…
Reference in a new issue