diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2008-12-27 01:13:47 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-12-30 17:07:17 +0000 |
commit | fcb1791f553081e5267c2d0b7795eab224b4a342 (patch) | |
tree | 16772e322df1059b1f13585396c683e50eafc3c3 /meta/packages/libnl | |
parent | e380b48602db316c7d12d328192eadc52e5be861 (diff) | |
download | poky-fcb1791f553081e5267c2d0b7795eab224b4a342.tar.gz |
classes/autotools_stage.bbclass: Add autotools_stage class to further recipes to simplify recipes using standard autotools
Diffstat (limited to 'meta/packages/libnl')
-rw-r--r-- | meta/packages/libnl/libnl_1.0-pre6.bb | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/meta/packages/libnl/libnl_1.0-pre6.bb b/meta/packages/libnl/libnl_1.0-pre6.bb index 300222ca42..740bc937d7 100644 --- a/meta/packages/libnl/libnl_1.0-pre6.bb +++ b/meta/packages/libnl/libnl_1.0-pre6.bb | |||
@@ -5,14 +5,9 @@ HOMEPAGE = "http://people.suug.ch/~tgr/libnl/" | |||
5 | PRIORITY = "optional" | 5 | PRIORITY = "optional" |
6 | PV = "0.99+1.0-pre6" | 6 | PV = "0.99+1.0-pre6" |
7 | 7 | ||
8 | inherit autotools pkgconfig | 8 | inherit autotools_stage pkgconfig |
9 | 9 | ||
10 | SRC_URI= "http://people.suug.ch/~tgr/libnl/files/${PN}-1.0-pre6.tar.gz \ | 10 | SRC_URI= "http://people.suug.ch/~tgr/libnl/files/${PN}-1.0-pre6.tar.gz \ |
11 | file://local-includes.patch;patch=1" | 11 | file://local-includes.patch;patch=1" |
12 | 12 | ||
13 | S = "${WORKDIR}/${PN}-1.0-pre6" | 13 | S = "${WORKDIR}/${PN}-1.0-pre6" |
14 | |||
15 | do_stage () { | ||
16 | autotools_stage_all prefix=${prefix} | ||
17 | } | ||
18 | |||