diff options
author | Klemens Nanni <klemens@posteo.de> | 2015-08-16 17:01:21 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-16 17:05:34 +0100 |
commit | 094dcb6907373bb62165bee33311419600d8a4cc (patch) | |
tree | 294c5f128d4882f755eae277ac255749a5f16980 /resources/scripts/helpers/build/module/memtest86plus | |
parent | 5016e9e0c6dd30fb49e50b698fc857f15aae6de7 (diff) | |
download | librebootfr-094dcb6907373bb62165bee33311419600d8a4cc.tar.gz librebootfr-094dcb6907373bb62165bee33311419600d8a4cc.zip |
scripts: use the -j option in make (multithreaded compilation)
Diffstat (limited to 'resources/scripts/helpers/build/module/memtest86plus')
-rwxr-xr-x | resources/scripts/helpers/build/module/memtest86plus | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/module/memtest86plus b/resources/scripts/helpers/build/module/memtest86plus index 8fd9c1d0..ca9c7b7c 100755 --- a/resources/scripts/helpers/build/module/memtest86plus +++ b/resources/scripts/helpers/build/module/memtest86plus @@ -3,6 +3,7 @@ # helper script: builds memtest86+ source code # # Copyright (C) 2014, 2015 Francis Rowe <info@gluglug.org.uk> +# Copyright (C) 2015 Klemens Nanni <contact@autoboot.org> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -35,7 +36,7 @@ cd "memtest86+-5.01/" make clean # build memtest86+ -make +make -j$(nproc) # done. go back to main directory cd "../" |