diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
commit | f249735ad71fd5f13bfd295c55e1e0d596a1dbff (patch) | |
tree | 93735f3e25beab7ac8bf066c504df17b244db4eb /bootmenu/bootmenu_0.6.oe | |
parent | 11ebfcef190cf217f67fa2b79adee0f58f9718f3 (diff) |
Another pass of .oe cleanups.
BKrev: 405f6aa92YDm0pQN4padj00WWayDrQ
Diffstat (limited to 'bootmenu/bootmenu_0.6.oe')
-rw-r--r-- | bootmenu/bootmenu_0.6.oe | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/bootmenu/bootmenu_0.6.oe b/bootmenu/bootmenu_0.6.oe index 44cce5ed3e..c9fbb041d7 100644 --- a/bootmenu/bootmenu_0.6.oe +++ b/bootmenu/bootmenu_0.6.oe @@ -1,17 +1,15 @@ DEPENDS = "virtual/libc" DESCRIPTION = "Pluginable bootup menu." -SRC_URI := http://www.cosmicpenguin.net/pub/bootmenu/${P}.tar.gz \ - file://${FILESDIR}/compile.patch;patch=1 +SRC_URI = "http://www.cosmicpenguin.net/pub/bootmenu/bootmenu-${PV}.tar.gz \ + file://${FILESDIR}/compile.patch;patch=1" EXTRA_OEMAKE = do_compile () { - cd src - oe_runmake 'CC=${CC}' 'CFLAGS=${CFLAGS}' 'LDFLAGS=${LDFLAGS}' + oe_runmake -C src 'CC=${CC}' 'CFLAGS=${CFLAGS}' 'LDFLAGS=${LDFLAGS}' } do_install () { - cd src - oe_runmake 'PLUGINDIR=${datadir}/bootmenu' 'PREFIX=${bindir}' 'DESTDIR=${D}' install + oe_runmake -C src 'PLUGINDIR=${datadir}/bootmenu' 'PREFIX=${bindir}' 'DESTDIR=${D}' install } |