diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-10-01 20:05:51 +0100 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2019-10-01 20:05:51 +0100 |
commit | 8bbe54dd3db007752cd1145caaaa9fe7d7084762 (patch) | |
tree | 9b1a993bc22647e7451de8ebb02318dce478c056 /reproduce/software/make/high-level.mk | |
parent | 4230cefd85348f297224596fd9db927793fcb39b (diff) |
Minor corrections in configure and prepare phase
Since ImageMagick can take long to build, we are now building it in
parallel. Also, the part where we replace an `_' with `\_' in the software
version at the end of the configure script was removed. It is more
clear/readable that the actual rule that includes such a name deals with
the underline (as is the case for `sip_tpv' which already dealt with it).
Finally, I noticed that the checks at the start of `top-prepare' were
missing new-lines. I had forgot that the Make single-shell variable isn't
activated in this stage yet.
Diffstat (limited to 'reproduce/software/make/high-level.mk')
-rw-r--r-- | reproduce/software/make/high-level.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reproduce/software/make/high-level.mk b/reproduce/software/make/high-level.mk index 930bad8..3516330 100644 --- a/reproduce/software/make/high-level.mk +++ b/reproduce/software/make/high-level.mk @@ -713,7 +713,7 @@ $(ibidir)/imagemagick: $(tdir)/imagemagick-$(imagemagick-version).tar.xz \ $(ibidir)/libtiff \ $(ibidir)/zlib $(call gbuild, $<, ImageMagick-$(imagemagick-version), static, \ - --without-x --disable-openmp, V=1) \ + --without-x --disable-openmp, V=1 -j$(numthreads)) \ && echo "ImageMagick $(imagemagick-version)" > $@ # `imfit' doesn't use the traditional `configure' and `make' to install |