diff options
| author | Phil Blundell <philb@gnu.org> | 2012-09-24 22:43:05 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-25 10:41:26 +0100 |
| commit | f32785ae0656aa2f541824e902d49292c6ebab9d (patch) | |
| tree | 9866b3bab1bd6cbd2b4854855eb9ed04368ae17a | |
| parent | 8b3aa00029e62df6d05710cf166fd5d09bdb29cf (diff) | |
| download | poky-f32785ae0656aa2f541824e902d49292c6ebab9d.tar.gz | |
libcap: Fix erroneous path in last commit
The directory used as SBINDIR should be ${sbindir} not ${base_sbindir}.
Reported by Martin Jansa <martin.jansa@gmail.com>
(From OE-Core rev: 2c6725c1f8427a0920c2810d649010f98b7869eb)
Signed-off-by: Phil Blundell <pb@pbcl.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-support/libcap/libcap.inc | 2 | ||||
| -rw-r--r-- | meta/recipes-support/libcap/libcap_2.22.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/libcap/libcap.inc b/meta/recipes-support/libcap/libcap.inc index bfaeffd746..27552ad49b 100644 --- a/meta/recipes-support/libcap/libcap.inc +++ b/meta/recipes-support/libcap/libcap.inc | |||
| @@ -43,7 +43,7 @@ do_compile() { | |||
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | do_install() { | 45 | do_install() { |
| 46 | oe_runmake install DESTDIR="${D}" prefix="${prefix}" SBINDIR="${D}${base_sbindir}" | 46 | oe_runmake install DESTDIR="${D}" prefix="${prefix}" SBINDIR="${D}${sbindir}" |
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | do_install_append() { | 49 | do_install_append() { |
diff --git a/meta/recipes-support/libcap/libcap_2.22.bb b/meta/recipes-support/libcap/libcap_2.22.bb index d57c102fef..560bd69c9b 100644 --- a/meta/recipes-support/libcap/libcap_2.22.bb +++ b/meta/recipes-support/libcap/libcap_2.22.bb | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | require libcap.inc | 1 | require libcap.inc |
| 2 | 2 | ||
| 3 | PR = "r4" | 3 | PR = "r5" |
| 4 | 4 | ||
| 5 | SRC_URI[md5sum] = "b4896816b626bea445f0b3849bdd4077" | 5 | SRC_URI[md5sum] = "b4896816b626bea445f0b3849bdd4077" |
| 6 | SRC_URI[sha256sum] = "e1cae65d8febf2579be37c255d2e058715785ead481a4e6a4357a06aff84721f" | 6 | SRC_URI[sha256sum] = "e1cae65d8febf2579be37c255d2e058715785ead481a4e6a4357a06aff84721f" |
