diff options
author | Francis Rowe <info@gluglug.org.uk> | 2016-03-28 13:03:10 -0400 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2016-03-28 13:03:10 -0400 |
commit | 9d3eb000ff247041ef91d7f4c2857f8c9d8c7c57 (patch) | |
tree | 4df2fb8b9b2953abf56cd01cc2a38a103039ef36 /resources/scripts | |
parent | 61ab1d14825064b02c3b16150f4a48b01f3e32ff (diff) | |
download | librebootfr-9d3eb000ff247041ef91d7f4c2857f8c9d8c7c57.tar.gz librebootfr-9d3eb000ff247041ef91d7f4c2857f8c9d8c7c57.zip |
build/module/crossgcc: build for all architectures
Diffstat (limited to 'resources/scripts')
-rwxr-xr-x | resources/scripts/helpers/build/module/crossgcc | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/resources/scripts/helpers/build/module/crossgcc b/resources/scripts/helpers/build/module/crossgcc index 7a23e392..37aaf492 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} ) |