From aaf380803fa713038563e9991bb5eff9ed0b4447 Mon Sep 17 00:00:00 2001 From: mirko Date: Sat, 17 Jul 2010 17:43:39 +0000 Subject: [PATCH] copy over qt4 host tools (qmake, moc, rcc, uic) into staging_dir_host git-svn-id: svn://svn.openwrt.org/openwrt/packages@22264 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Xorg/lib/qt4/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Xorg/lib/qt4/Makefile b/Xorg/lib/qt4/Makefile index c3bd3a98b..317edb8f0 100644 --- a/Xorg/lib/qt4/Makefile +++ b/Xorg/lib/qt4/Makefile @@ -168,6 +168,7 @@ define Build/Configure # svg: svg support always compiled in, as once qt is built without, strange include errors occur when we're going to compile qt4-svg afterwards # linuxfb/directfb: since directfb is not much overhead compared to plain framebuffer, force using directfb # do not use fontconfig as it doesn't work anyway for qte + # bindir: bindir is where the host tools (qmake, moc, rcc, uic) will get installed into - they are just used on the host and not goig to be packaged ( \ cd $(PKG_BUILD_DIR); \ QPATH='mkspecs/qws/linux-openwrt-g++' ; \ @@ -294,6 +295,14 @@ define Build/Compile endef define Build/InstallDev + $(INSTALL_DIR) \ + $(STAGING_DIR_HOST)/bin + + # host tools (qmake, moc, rcc, uic) + $(CP) \ + $(PKG_INSTALL_DIR)/usr/bin/{qmake,moc,rcc,uic} \ + $(STAGING_DIR_HOST)/bin/ + $(INSTALL_DIR) \ $(1)/usr/share/mkspecs \ $(1)/usr/lib/pkgconfig \