diff options
author | Joe Slater <jslater@windriver.com> | 2015-06-19 09:44:42 -0700 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2015-07-06 15:27:52 -0400 |
commit | 8621b51850332e5a7f3a05431e1f1c2aab6d6787 (patch) | |
tree | 79c42574d71f5dcf5caeaa9b7bf37c701879fcf6 /meta-networking/recipes-connectivity/ufw/ufw_0.33.bb | |
parent | 51e4d5dc4a905082526717ebe138f43731d93d53 (diff) | |
download | meta-openembedded-8621b51850332e5a7f3a05431e1f1c2aab6d6787.tar.gz |
drbd ufw linux-atm: correct certain packaging error
The named packages explicitly install some items under /lib,
but the recipes assume they are in base_libdir. We change
the recipes.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/ufw/ufw_0.33.bb')
-rw-r--r-- | meta-networking/recipes-connectivity/ufw/ufw_0.33.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-networking/recipes-connectivity/ufw/ufw_0.33.bb b/meta-networking/recipes-connectivity/ufw/ufw_0.33.bb index 2721f8fa7..66e917e31 100644 --- a/meta-networking/recipes-connectivity/ufw/ufw_0.33.bb +++ b/meta-networking/recipes-connectivity/ufw/ufw_0.33.bb | |||
@@ -32,10 +32,12 @@ RRECOMMENDS_${PN} = " \ | |||
32 | kernel-module-ipv6 \ | 32 | kernel-module-ipv6 \ |
33 | " | 33 | " |
34 | 34 | ||
35 | # Certain items are explicitly put under /lib, not base_libdir when installed. | ||
36 | # | ||
35 | FILES_${PN} += " \ | 37 | FILES_${PN} += " \ |
36 | ${sbindir}/* \ | 38 | ${sbindir}/* \ |
37 | ${datadir}/ufw/* \ | 39 | ${datadir}/ufw/* \ |
38 | ${base_libdir}/ufw/* \ | 40 | /lib/ufw/* \ |
39 | ${sysconfdir}/ufw/* \ | 41 | ${sysconfdir}/ufw/* \ |
40 | ${sysconfdir}/default/ufw \ | 42 | ${sysconfdir}/default/ufw \ |
41 | " | 43 | " |