summaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2016-03-28 13:03:10 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2016-03-28 13:03:10 (EDT)
commit9d3eb000ff247041ef91d7f4c2857f8c9d8c7c57 (patch)
tree4df2fb8b9b2953abf56cd01cc2a38a103039ef36 /resources
parent61ab1d14825064b02c3b16150f4a48b01f3e32ff (diff)
downloadlibreboot-9d3eb000ff247041ef91d7f4c2857f8c9d8c7c57.zip
libreboot-9d3eb000ff247041ef91d7f4c2857f8c9d8c7c57.tar.gz
libreboot-9d3eb000ff247041ef91d7f4c2857f8c9d8c7c57.tar.bz2
build/module/crossgcc: build for all architectures
Diffstat (limited to 'resources')
-rwxr-xr-xresources/scripts/helpers/build/module/crossgcc9
1 files changed, 1 insertions, 8 deletions
diff --git a/resources/scripts/helpers/build/module/crossgcc b/resources/scripts/helpers/build/module/crossgcc
index 7a23e39..37aaf49 100755
--- a/resources/scripts/helpers/build/module/crossgcc
+++ b/resources/scripts/helpers/build/module/crossgcc
@@ -38,13 +38,6 @@ fi
(
cd "crossgcc/"
-if [ $# -lt 1 ]; then
- make crossgcc-i386 CPUS=${cores}
- make crossgcc-arm CPUS=${cores}
-else
- for architecture in "${@}"; do
- make crossgcc-${architecture} CPUS=${cores}
- done
-fi
+make crossgcc CPUS=${cores}
)