diff options
author | Koen Kooi <koen@openembedded.org> | 2010-03-16 15:46:15 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-03-16 15:46:15 +0100 |
commit | 157b38c38c5ab0bb44d31e8478fc8241d99020d5 (patch) | |
tree | f032dd728b9fa1824d9427f0e667135f2a1f80fe /recipes/udev/udev_151.bb | |
parent | 969424adc3187312fa92456733edd861d1dc61d3 (diff) |
udev 151: libdir symlinking logic was reversed, fix that
Diffstat (limited to 'recipes/udev/udev_151.bb')
-rw-r--r-- | recipes/udev/udev_151.bb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/recipes/udev/udev_151.bb b/recipes/udev/udev_151.bb index 884ba8f256..fab8bc254d 100644 --- a/recipes/udev/udev_151.bb +++ b/recipes/udev/udev_151.bb @@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod the hotplug package and requires a kernel not older than 2.6.12." LICENSE = "GPLv2+" -PR = "r5" +PR = "r6" # Untested DEFAULT_PREFERENCE = "-1" @@ -105,8 +105,9 @@ do_install () { install -m 0755 ${WORKDIR}/mount.sh ${D}${sysconfdir}/udev/scripts/mount.sh install -m 0755 ${WORKDIR}/network.sh ${D}${sysconfdir}/udev/scripts - mkdir -p ${D}${base_libdir} - ln -sf ${libdir}/udev ${D}${base_libdir}/ + mkdir -p ${base_libdir}/udev + mkdir -p ${D}${libdir} + ln -sf ${base_libdir}/udev ${D}${libdir}/ } do_install_append_h2200() { |