aboutsummaryrefslogtreecommitdiff
path: root/reproduce/software/make/high-level.mk
diff options
context:
space:
mode:
authorRaul Infante-Sainz <infantesainz@gmail.com>2019-05-06 08:48:34 +0100
committerRaul Infante-Sainz <infantesainz@gmail.com>2019-05-06 08:53:26 +0100
commit76671675d5a7534026da935aadf4b640ecbc0529 (patch)
tree08e3db44d6d55c20938f8ccb494b5ea520a64b9f /reproduce/software/make/high-level.mk
parent8a4d6d223b555a0a1660feeb23db070b10feec4d (diff)
Disabled X Window System in netpbm installation for GNU/Linux systems
Until this commit, we were installing `netpbm' without disabling the X Windows System in GNU/Linux. That is the default option in the configure step of `netpbm'. However, we are not installing the necessary libraries (X11) and headers for that. As a consecuence, when testing in a system where we don't have these libraries/headers (Ubuntu 14.04), it crashes. With this commit, we disable the X Windows System option in `netpbm' by giving the answer `none' to one of the last answers to that question in the configure step.
Diffstat (limited to 'reproduce/software/make/high-level.mk')
-rw-r--r--reproduce/software/make/high-level.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/reproduce/software/make/high-level.mk b/reproduce/software/make/high-level.mk
index 64f1197..6054a48 100644
--- a/reproduce/software/make/high-level.mk
+++ b/reproduce/software/make/high-level.mk
@@ -605,7 +605,7 @@ $(ibidir)/netpbm: $(tdir)/netpbm-$(netpbm-version).tar.gz \
if [ x$(on_mac_os) = xyes ]; then \
answers='\n\n$(ildir)\n\n\n\n\n\n$(ildir)/include\n\n$(ildir)/include\n\n$(ildir)/include\nnone\n\n'; \
else \
- answers='\n\n\n\ny\n\n\n\n\n\n\n\n\n\n\n\n\n'; \
+ answers='\n\n\n\n\n\n\n\n\n\n\n\n\nnone\n\n\n'; \
fi; \
cd $(ddir) \
&& unpackdir=netpbm-$(netpbm-version) \