diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2009-10-05 08:43:48 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2009-10-05 08:43:48 (GMT) |
commit | 80dcaeb8946122e471bf65adece6801c026e9b83 (patch) | |
tree | 017217b2c48ff7c6e0782ac0fad1fee63429f85c /src | |
parent | 38750f38c72cd20272ce150842d79fd391e67440 (diff) | |
download | mxe-80dcaeb8946122e471bf65adece6801c026e9b83.zip mxe-80dcaeb8946122e471bf65adece6801c026e9b83.tar.gz mxe-80dcaeb8946122e471bf65adece6801c026e9b83.tar.bz2 |
build the native Qt tools from unpatched sources
Diffstat (limited to 'src')
-rw-r--r-- | src/qt.mk | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -40,14 +40,9 @@ endef define $(PKG)_BUILD - # Note on patchfile qt-win32.patch - # A patchfile should have been applied already. Since we make a copy - # of the patched directory here, it is important that the changes - # in the patches do not break the native build. - - # First configure a minimal native version of Qt - # for moc, rcc, uic and qmake - cp -a '$(1)' '$(1)'.native + # Native, unpatched build of Qt for moc, rcc, uic and qmake + cd '$(1)' && $(call UNPACK_PKG_ARCHIVE,qt) + mv '$(1)/$(qt_SUBDIR)' '$(1).native' cd '$(1)'.native && ./configure \ -opensource \ -confirm-license \ |