aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMihai Moldovan <ionic@ionic.de>2018-03-09 09:07:15 +0100
committerMihai Moldovan <ionic@ionic.de>2018-03-15 12:20:05 +0100
commit32dac66c6f375a96cd4fc466a553943864519a00 (patch)
tree368043925e92e36e36f4bf9485a19c56befb6557
parent7a901039c6f016675e0ad6778f79844347d8f661 (diff)
downloadnx-libs-32dac66c6f375a96cd4fc466a553943864519a00.tar.gz
nx-libs-32dac66c6f375a96cd4fc466a553943864519a00.tar.bz2
nx-libs-32dac66c6f375a96cd4fc466a553943864519a00.zip
nx-X11/programs/Xserver/Imakefile: use printf with no trailing newline instead of echo for variable value.
-rw-r--r--nx-X11/programs/Xserver/Imakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/Imakefile b/nx-X11/programs/Xserver/Imakefile
index 285b3610f..f4f8d3fa3 100644
--- a/nx-X11/programs/Xserver/Imakefile
+++ b/nx-X11/programs/Xserver/Imakefile
@@ -292,7 +292,7 @@ NXAGENTOBJS = hw/nxagent/miinitext.o \
XPMLIB = -lXpm
XMLLIB = `pkg-config --libs libxml-2.0`
PIXMANLIB = `pkg-config --libs pixman-1`
-ZLIB = $$(pkg-config --exists 'zlib' >/dev/null 2>&1 && pkg-config --libs 'zlib' || echo "-lz")
+ZLIB = $$(pkg-config --exists 'zlib' >/dev/null 2>&1 && pkg-config --libs 'zlib' || printf '%s' '-lz')
PNGLIB = `pkg-config --libs libpng`
JPEGLIB = -ljpeg