BKrev: 410d574dj3dh5taEen2rfMzCtQ1h2w
oe_runmake 'DESTDIR=${D}' install
}
+STAGE_TEMP="${WORKDIR}/temp-staging"
+
+autotools_stage_includes() {
+ rm -rf ${STAGE_TEMP}
+ mkdir -p ${STAGE_TEMP}
+ make DESTDIR="${STAGE_TEMP}" install
+ cp -a ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}
+ rm -rf ${STAGE_TEMP}
+}
+
EXPORT_FUNCTIONS do_configure do_install
inherit autotools pkgconfig
-STAGE_TEMP="${WORKDIR}/temp-staging"
-
gnome_stage_includes() {
- rm -rf ${STAGE_TEMP}
- mkdir -p ${STAGE_TEMP}
- make DESTDIR="${STAGE_TEMP}" install
- cp -a ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}
- rm -rf ${STAGE_TEMP}
+ autotools_stage_includes
}