summaryrefslogtreecommitdiff
path: root/busybox
diff options
context:
space:
mode:
Diffstat (limited to 'busybox')
-rw-r--r--busybox/slingbox_1.00.bb4
-rw-r--r--busybox/switchbox_1.00.bb4
2 files changed, 4 insertions, 4 deletions
diff --git a/busybox/slingbox_1.00.bb b/busybox/slingbox_1.00.bb
index d9849b59d5..155052eabd 100644
--- a/busybox/slingbox_1.00.bb
+++ b/busybox/slingbox_1.00.bb
@@ -15,8 +15,8 @@ S = "${WORKDIR}/busybox-${PV}"
python () {
# Don't build slingbox unless we're targeting an nslu2
- if oe.data.getVar("MACHINE", d, 1) != "nslu2":
- raise oe.parse.SkipPackage("switchbox only builds for the Linksys NSLU2")
+ if bb.data.getVar("MACHINE", d, 1) != "nslu2":
+ raise bb.parse.SkipPackage("switchbox only builds for the Linksys NSLU2")
}
export EXTRA_CFLAGS = "${CFLAGS}"
diff --git a/busybox/switchbox_1.00.bb b/busybox/switchbox_1.00.bb
index b9e4fb0648..59b422a5fd 100644
--- a/busybox/switchbox_1.00.bb
+++ b/busybox/switchbox_1.00.bb
@@ -17,8 +17,8 @@ S = "${WORKDIR}/busybox-${PV}"
python () {
# Don't build switchbox unless we're targeting an nslu2
- if oe.data.getVar("MACHINE", d, 1) != "nslu2":
- raise oe.parse.SkipPackage("switchbox only builds for the Linksys NSLU2")
+ if bb.data.getVar("MACHINE", d, 1) != "nslu2":
+ raise bb.parse.SkipPackage("switchbox only builds for the Linksys NSLU2")
}
LDFLAGS =+ "-static"