From 76671675d5a7534026da935aadf4b640ecbc0529 Mon Sep 17 00:00:00 2001
From: Raul Infante-Sainz <infantesainz@gmail.com>
Date: Mon, 6 May 2019 08:48:34 +0100
Subject: 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.
---
 reproduce/software/make/high-level.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'reproduce/software')

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) \
-- 
cgit v1.2.1