generic-poky/meta/packages/unifdef/unifdef-native_2.6.18+git.bb
Richard Purdie dc807f54f8 Finally deprecate all legacy do_stage functions. This changes the existing warning
into a fatal error if any legacy do_stage functions are found.

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
2010-07-22 11:44:28 +01:00

18 lines
285 B
BlitzBasic

DESCRIPTION = "Kernel header preprocessor"
SECTION = "devel"
LICENSE = "GPL"
SRC_URI = "file://unifdef.c"
inherit native
do_compile() {
${CC} ${CFLAGS} ${LDFLAGS} -o unifdef ${WORKDIR}/unifdef.c
}
do_install() {
install -d ${D}${bindir}
install -m 0755 unifdef ${D}${bindir}
}