diff options
author | Leah Rowe <info@minifree.org> | 2016-09-02 08:20:13 +0100 |
---|---|---|
committer | Leah Rowe <info@minifree.org> | 2016-09-02 08:20:13 +0100 |
commit | 7733b28641d9fe014146ba0122cb41158346fb51 (patch) | |
tree | 1862cd1fc06eee90b42e51ac84c264dd54d3de16 /resources/scripts/helpers/build/module | |
parent | 2d056d2c13e3d6d3174ed6b5703f946e8958c17d (diff) | |
download | librebootfr-7733b28641d9fe014146ba0122cb41158346fb51.tar.gz librebootfr-7733b28641d9fe014146ba0122cb41158346fb51.zip |
Revert "build all architectures of crossgcc"
This reverts commit 2d056d2c13e3d6d3174ed6b5703f946e8958c17d.
Diffstat (limited to 'resources/scripts/helpers/build/module')
-rwxr-xr-x | resources/scripts/helpers/build/module/crossgcc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/resources/scripts/helpers/build/module/crossgcc b/resources/scripts/helpers/build/module/crossgcc index bc968b67..a88427fe 100755 --- a/resources/scripts/helpers/build/module/crossgcc +++ b/resources/scripts/helpers/build/module/crossgcc @@ -38,10 +38,8 @@ fi ( cd "crossgcc/" -# for architecture in i386 arm; do -# make crossgcc-${architecture} CPUS=${cores} -# done -#dirty dirty hack for the 20160902 release: -make crossgcc CPUS=${cores} +for architecture in i386 arm; do + make crossgcc-${architecture} CPUS=${cores} +done ) |