diff options
author | Paul Barker <paul.barker@sancloud.com> | 2022-10-06 09:10:20 +0100 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-10-08 23:00:24 -0400 |
commit | b28ac85685af914b206736b47c10b550b8f1cb7c (patch) | |
tree | af2f4366a9e0fcbf66f352e946f8c34614e9c558 /recipes-networking/openvswitch/openvswitch_git.bb | |
parent | 8177e4a6b72d5b701b92b2028baf1a8860cf18e6 (diff) | |
download | meta-virtualization-b28ac85685af914b206736b47c10b550b8f1cb7c.tar.gz |
openvswitch: Fix INSTALL_MOD_PATH
If the usrmerge DISTRO_FEATURE is enabled, modules should be installed
under /usr/lib instead of /lib. We can handle this by using
${root_prefix} in INSTALL_MOD_PATH.
Signed-off-by: Paul Barker <paul.barker@sancloud.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-networking/openvswitch/openvswitch_git.bb')
-rw-r--r-- | recipes-networking/openvswitch/openvswitch_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-networking/openvswitch/openvswitch_git.bb b/recipes-networking/openvswitch/openvswitch_git.bb index 2e125e78..f5d85f3f 100644 --- a/recipes-networking/openvswitch/openvswitch_git.bb +++ b/recipes-networking/openvswitch/openvswitch_git.bb | |||
@@ -53,5 +53,5 @@ do_install_ptest() { | |||
53 | } | 53 | } |
54 | 54 | ||
55 | do_install:append() { | 55 | do_install:append() { |
56 | oe_runmake modules_install INSTALL_MOD_PATH=${D} | 56 | oe_runmake modules_install INSTALL_MOD_PATH=${D}${root_prefix} |
57 | } | 57 | } |