comparison src/qt.mk @ 468:f826746491e6

build the native Qt tools from unpatched sources
author Volker Grabsch <vog@notjusthosting.com>
date Mon, 05 Oct 2009 10:43:48 +0200
parents c2462319a112
children a07d9f69e2ee
comparison
equal deleted inserted replaced
467:dfd0873965ff 468:f826746491e6
38 tail -1 38 tail -1
39 endef 39 endef
40 40
41 define $(PKG)_BUILD 41 define $(PKG)_BUILD
42 42
43 # Note on patchfile qt-win32.patch 43 # Native, unpatched build of Qt for moc, rcc, uic and qmake
44 # A patchfile should have been applied already. Since we make a copy 44 cd '$(1)' && $(call UNPACK_PKG_ARCHIVE,qt)
45 # of the patched directory here, it is important that the changes 45 mv '$(1)/$(qt_SUBDIR)' '$(1).native'
46 # in the patches do not break the native build.
47
48 # First configure a minimal native version of Qt
49 # for moc, rcc, uic and qmake
50 cp -a '$(1)' '$(1)'.native
51 cd '$(1)'.native && ./configure \ 46 cd '$(1)'.native && ./configure \
52 -opensource \ 47 -opensource \
53 -confirm-license \ 48 -confirm-license \
54 -prefix '$(PREFIX)/$(TARGET)' \ 49 -prefix '$(PREFIX)/$(TARGET)' \
55 -prefix-install \ 50 -prefix-install \