summaryrefslogtreecommitdiffstats
path: root/openembedded/classes/autotools.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2005-10-10 10:41:35 +0000
committerRichard Purdie <richard@openedhand.com>2005-10-10 10:41:35 +0000
commitcbf3ef91305558fb8a59e19c5987a9e9ca22013a (patch)
treef7142e57734a8b2fac92ff758a6617d4464a82f9 /openembedded/classes/autotools.bbclass
parent562d4d35878bb644cbe2b9f23ef407fd6e1e38e2 (diff)
downloadpoky-cbf3ef91305558fb8a59e19c5987a9e9ca22013a.tar.gz
Merge changes from mainline OE to try and keep us in sync.
git-svn-id: https://svn.o-hand.com/repos/poky@127 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/classes/autotools.bbclass')
-rw-r--r--openembedded/classes/autotools.bbclass12
1 files changed, 12 insertions, 0 deletions
diff --git a/openembedded/classes/autotools.bbclass b/openembedded/classes/autotools.bbclass
index ec1d4af1a4..8d448ce0d3 100644
--- a/openembedded/classes/autotools.bbclass
+++ b/openembedded/classes/autotools.bbclass
@@ -150,4 +150,16 @@ autotools_stage_includes() {
150 fi 150 fi
151} 151}
152 152
153autotools_stage_all() {
154 if [ "${INHIBIT_AUTO_STAGE}" != "1" ]
155 then
156 rm -rf ${STAGE_TEMP}
157 mkdir -p ${STAGE_TEMP}
158 oe_runmake DESTDIR="${STAGE_TEMP}" install
159 cp -pPR ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}
160 cp -pPR ${STAGE_TEMP}/${libdir}/* ${STAGING_LIBDIR}
161 rm -rf ${STAGE_TEMP}
162 fi
163}
164
153EXPORT_FUNCTIONS do_configure do_install 165EXPORT_FUNCTIONS do_configure do_install