diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-11-20 12:10:33 +0000 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2018-11-20 12:10:33 +0000 |
commit | bcf45125dfb8c7940bfff9a95ca7ba87bb961b7b (patch) | |
tree | 6d0d71b1afa1052ee518fac7a256307952881d45 /configure | |
parent | 016b8f3b567e9af1125361520fe609f009c814c9 (diff) |
Not including system's libraries in high-level dependencies
The system's libraries are no longer used in building the higher-level
dependencies. Also, thanks to Raul Infante Sainz, we found out that Bash's
build script was still removing the extra directory information (not
good!).
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -495,8 +495,9 @@ make -f reproduce/src/make/dependencies-basic.mk \ # Makefile. To make the job easier, we'll do it in a Makefile, not a # script. Bash and Make were the tools we need to run Makefiles, so we had # to build them in this script. But after this, we can rely on Makefiles. +numthreads=$(./$instdir/bin/nproc) ./.local/bin/make -f reproduce/src/make/dependencies.mk \ - static_build=$static_build #-j8 + static_build=$static_build #-j$numthreads |