diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2015-06-11 16:15:03 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-06-23 12:40:10 +0200 |
commit | 8f7ee00291f0e693223ebf0644386206dcf8e64b (patch) | |
tree | 5b108c602fb6de7e766c7c20b585a23db5728714 /meta-oe/recipes-support/usb-modeswitch | |
parent | 4e3fd58988b5d40bb2fb699ffdaecc8b088a4372 (diff) | |
download | meta-openembedded-8f7ee00291f0e693223ebf0644386206dcf8e64b.tar.gz |
meta-oe: fix the install dir for udev rules and files
When enable multilib, some packages try to install udev rules and
related files into /lib64/udev/ directory. But these files should
be installed in /lib/udev/ directory even on multilib.
Use ${nonarch_base_libdir} instead of ${base_libdir} to fix it.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Diffstat (limited to 'meta-oe/recipes-support/usb-modeswitch')
-rw-r--r-- | meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb index 5e95bb944..52a2f5688 100644 --- a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb +++ b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb | |||
@@ -10,7 +10,7 @@ SRC_URI[sha256sum] = "2752103de171ed5f6c8d6a6e3e73e16c9ee3e8e394dd39c5991f7680eb | |||
10 | 10 | ||
11 | EXTRA_OEMAKE = "TCL=${bindir}/tclsh" | 11 | EXTRA_OEMAKE = "TCL=${bindir}/tclsh" |
12 | 12 | ||
13 | FILES_${PN} = "${bindir} ${sysconfdir} ${base_libdir}/udev/usb_modeswitch ${sbindir} ${localstatedir}/lib/usb_modeswitch" | 13 | FILES_${PN} = "${bindir} ${sysconfdir} ${nonarch_base_libdir}/udev/usb_modeswitch ${sbindir} ${localstatedir}/lib/usb_modeswitch" |
14 | RDEPENDS_${PN} = "tcl" | 14 | RDEPENDS_${PN} = "tcl" |
15 | RRECOMMENDS_${PN} = "usb-modeswitch-data" | 15 | RRECOMMENDS_${PN} = "usb-modeswitch-data" |
16 | 16 | ||