# HG changeset patch # User Mark Brand # Date 1266480993 -3600 # Node ID 0b75930ca822be95748f25d68b3fb0b7d45428d9 # Parent d57d5de5d4b24d1a838cdcbc1022cea431350a25 bugfix: use backquotes instead of $(shell ...) in the build rules of package qt diff -r d57d5de5d4b2 -r 0b75930ca822 src/qt.mk --- 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++ \