changeset 788:0b75930ca822

bugfix: use backquotes instead of $(shell ...) in the build rules of package qt
author Mark Brand <mabrand@mabrand.nl>
date Thu, 18 Feb 2010 09:16:33 +0100
parents d57d5de5d4b2
children 90867b656d12
files src/qt.mk
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/qt.mk	Thu Feb 18 01:56:41 2010 +0100
+++ b/src/qt.mk	Thu Feb 18 09:16:33 2010 +0100
@@ -94,7 +94,7 @@
     # -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++ \