summaryrefslogtreecommitdiffstats
path: root/bin/build
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-06-02 19:39:36 +0000
committerChris Larson <clarson@kergoth.com>2003-06-02 19:39:36 +0000
commit0a4af380d62f6d3ae52b200c26ba33f5bb50f23c (patch)
treec938185fa1596d45d4fda06acc0f42ede22638d3 /bin/build
parent75d12197fc4e712a4b88d6bd8f61e425f121aa4b (diff)
downloadbitbake-contrib-0a4af380d62f6d3ae52b200c26ba33f5bb50f23c.tar.gz
Rename: bin/build/base.oeclass -> bin/classes/base.oeclass
Diffstat (limited to 'bin/build')
-rw-r--r--bin/build/base.oeclass30
1 files changed, 0 insertions, 30 deletions
diff --git a/bin/build/base.oeclass b/bin/build/base.oeclass
deleted file mode 100644
index 2c7ac0b33..000000000
--- a/bin/build/base.oeclass
+++ /dev/null
@@ -1,30 +0,0 @@
-base_do_unpack() {
- oenote "base_do_unpack"
- test "${A}" != "" && unpack "${A}" || oenote "nothing to extract"
-}
-
-
-base_do_compile() {
- oenote "base_do_compile"
- oenote "pwd is $PWD"
- if [ -x ./configure ] ; then
- oeconf
- oemake || 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