summaryrefslogtreecommitdiffstats
path: root/src/qt.mk
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2010-02-18 08:16:33 (GMT)
committerMark Brand <mabrand@mabrand.nl>2010-02-18 08:16:33 (GMT)
commit03dbabd8f431884efa96e4cb59b4767fe646cf46 (patch)
tree2383a76870cbe8eafb45c4838c64e6c5c902e0cf /src/qt.mk
parent902b61d8bc6b321f7e2f43660225f086b5e13fc8 (diff)
downloadmxe-03dbabd8f431884efa96e4cb59b4767fe646cf46.zip
mxe-03dbabd8f431884efa96e4cb59b4767fe646cf46.tar.gz
mxe-03dbabd8f431884efa96e4cb59b4767fe646cf46.tar.bz2
bugfix: use backquotes instead of $(shell ...) in the build rules of package qt
Diffstat (limited to 'src/qt.mk')
-rw-r--r--src/qt.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt.mk b/src/qt.mk
index 908eea7..b36ba37 100644
--- a/src/qt.mk
+++ b/src/qt.mk
@@ -94,7 +94,7 @@ define $(PKG)_BUILD
# -system-zlib -system-libpng -system-libjpeg -system-libtiff -system-libmng -system-sqlite
# There is no -system-gif option. NB -system-libmng will not link in shared build.
# Linking PSQL shared plugin requires PSQL_LIBS. Harmless for static build.
- cd '$(1)' && PSQL_LIBS="-lpq -lsecur32 $(shell $(TARGET)-pkg-config --static --libs-only-l openssl)" ./configure \
+ cd '$(1)' && PSQL_LIBS="-lpq -lsecur32 `'$(TARGET)-pkg-config' --libs-only-l openssl`" ./configure \
-opensource \
-confirm-license \
-xplatform win32-g++ \