summaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 03a61c378d..1c884b494a 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -312,6 +312,10 @@ autotools_do_configure() {
312 fi 312 fi
313} 313}
314 314
315autotools_do_compile() {
316 oe_runmake
317}
318
315autotools_do_install() { 319autotools_do_install() {
316 oe_runmake 'DESTDIR=${D}' install 320 oe_runmake 'DESTDIR=${D}' install
317 # Info dir listing isn't interesting at this point so remove it if it exists. 321 # Info dir listing isn't interesting at this point so remove it if it exists.
@@ -322,6 +326,6 @@ autotools_do_install() {
322 326
323inherit siteconfig 327inherit siteconfig
324 328
325EXPORT_FUNCTIONS do_configure do_install 329EXPORT_FUNCTIONS do_configure do_compile do_install
326 330
327B = "${WORKDIR}/build" 331B = "${WORKDIR}/build"