diff options
author | Phil Blundell <philb@gnu.org> | 2004-09-10 21:30:29 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-09-10 21:30:29 +0000 |
commit | 0bb5641a770ed4561828c2bc348bf4d90adfd122 (patch) | |
tree | 15ac88fb19af7d67ffca0a7e8266befd409574ae /qt | |
parent | 603c139595d2d584cc73a5d74fe3075f8b9022bd (diff) |
install private/ headers as well
BKrev: 41421cf5c4tvzuxrURM-5MeUoHtR1A
Diffstat (limited to 'qt')
-rw-r--r-- | qt/qt-x11-free_3.3.2.oe | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/qt/qt-x11-free_3.3.2.oe b/qt/qt-x11-free_3.3.2.oe index 1147715252..ec9421a012 100644 --- a/qt/qt-x11-free_3.3.2.oe +++ b/qt/qt-x11-free_3.3.2.oe @@ -4,7 +4,7 @@ PRIORITY = "optional" LICENSE = "GPL/QPL" MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" DEPENDS = "uicmoc3-native freetype x11 xft xext libxrender libxrandr libxcursor" -PR = "r2" +PR = "r3" SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-x11-free-${PV}.tar.bz2 \ file://configure.patch;patch=1 \ @@ -43,10 +43,15 @@ do_compile() { do_stage() { oe_soinstall lib/libqt-mt.so.${PV} ${STAGING_LIBDIR}/ + install -d ${STAGING_INCDIR}/private for f in include/*.h do install -m 0644 $f ${STAGING_INCDIR}/ done + for f in include/private/*.h + do + install -m 0644 $f ${STAGING_INCDIR}/private/ + done } do_install() { |