diff options
author | Rodrigo Rebello <rprebello@gmail.com> | 2017-03-26 17:00:17 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-26 22:36:23 +0200 |
commit | 84d50c2e5a0067b526587961dc304697317bf324 (patch) | |
tree | 3f644fe7bae51bc1c9660c98825ef1464b8cc7ec | |
parent | f4dc73568b08bd96aa659c5ef29226349dee05de (diff) | |
download | buildroot-84d50c2e5a0067b526587961dc304697317bf324.tar.gz buildroot-84d50c2e5a0067b526587961dc304697317bf324.zip |
ghostscript: needs host-zlib
The ghostscript configure script checks for zlib on the host when
configuring the build of auxiliary programs used in the compilation
process and fails if such library is not found.
Add 'host-zlib' as a dependency and, while at it, also enclose $(HOSTCC)
in double quotes, otherwise configure fails when that variable expands
to a command containing spaces (e.g. when ccache is enabled).
Fixes:
http://autobuild.buildroot.net/results/61af9caa7fe6fce6b11f78f66b9d3590f37e92e7/
http://autobuild.buildroot.net/results/904f06e14247c22f740d8fd8902618017e0518f6/
Signed-off-by: Rodrigo Rebello <rprebello@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/ghostscript/ghostscript.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/ghostscript/ghostscript.mk b/package/ghostscript/ghostscript.mk index e568b20475..265503e471 100644 --- a/package/ghostscript/ghostscript.mk +++ b/package/ghostscript/ghostscript.mk @@ -15,6 +15,7 @@ GHOSTSCRIPT_DEPENDENCIES = \ host-lcms2 \ host-libjpeg \ host-pkgconf \ + host-zlib \ fontconfig \ ghostscript-fonts \ jpeg \ @@ -31,7 +32,7 @@ endef GHOSTSCRIPT_POST_PATCH_HOOKS += GHOSTSCRIPT_REMOVE_LIBS GHOSTSCRIPT_CONF_ENV = \ - CCAUX=$(HOSTCC) \ + CCAUX="$(HOSTCC)" \ CFLAGSAUX="$(HOST_CFLAGS) $(HOST_LDFLAGS)" GHOSTSCRIPT_CONF_OPTS = \ |