diff options
author | Mark Brand <mabrand@mabrand.nl> | 2010-02-18 08:16:33 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2010-02-18 08:16:33 (GMT) |
commit | 03dbabd8f431884efa96e4cb59b4767fe646cf46 (patch) | |
tree | 2383a76870cbe8eafb45c4838c64e6c5c902e0cf /src/qt.mk | |
parent | 902b61d8bc6b321f7e2f43660225f086b5e13fc8 (diff) | |
download | mxe-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.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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++ \ |