summaryrefslogtreecommitdiff
path: root/test~
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-09-04 00:26:22 +0000
committerChris Larson <clarson@kergoth.com>2003-09-04 00:26:22 +0000
commitffb5b6e8b6785d2c856dba6a9182ccff2bef5cf3 (patch)
treee56cb8f4ae60a35ad9609a7ab0d4c46266416b57 /test~
parent8a6ed144a1c0f7c4fd949da7701b2d5767e7afa9 (diff)
Miscellanious build fixes, due to our adding -e to make flags, and due to oeconf->oe_runconf and oemake->oe_runamke.
BKrev: 3f5686aeaD7nKBnwcSgw065VXSxC3w
Diffstat (limited to 'test~')
-rw-r--r--test~/inherit/base.oe29
1 files changed, 29 insertions, 0 deletions
diff --git a/test~/inherit/base.oe b/test~/inherit/base.oe
index e69de29bb2..6078e4826d 100644
--- a/test~/inherit/base.oe
+++ b/test~/inherit/base.oe
@@ -0,0 +1,29 @@
+base_do_unpack() {
+ oenote "base_do_unpack"
+ test "${A}" != "" && unpack "${A}" || oenote "nothing to extract"
+}
+
+
+base_do_compile() {
+ oenote "base_do_compile"
+ if [ -x ./configure ] ; then
+ oeconf
+ oe_runmake || die "oemake failed"
+ else
+ oenote "nothing to compile"
+ fi
+}
+
+
+base_do_stage() {
+ oenote "base_do_stage"
+ oenote "nothing to install into stage area"
+}
+
+
+base_do_install() {
+ oenote "base_do_install"
+ oenote "nothing to install"
+}
+
+EXPORT_FUNCTIONS do_unpack do_compile do_stage do_install