samba: Fix mount.smb/mount.smbfs link locations
authorTom Rini <trini@embeddedalley.com>
Wed, 26 Nov 2008 19:18:08 +0000 (14:18 -0500)
committerTom Rini <trini@embeddedalley.com>
Wed, 26 Nov 2008 19:18:08 +0000 (14:18 -0500)
As reported by me in bug 3880, mount -t (smb|smbfs) won't work unless the
helper is in /sbin (which is where upstream places these), so that's where
we want the links too.

packages/samba/samba.inc
packages/samba/samba_3.0.23c.bb

index a429307..f44b592 100644 (file)
@@ -38,6 +38,10 @@ do_compile () {
 do_install_append() {
        mv ${D}${libdir}/libsmbclient.so ${D}${libdir}/libsmbclient.so.0
        ln -sf libsmbclient.so.0 ${D}${libdir}/libsmbclient.so
+       mkdir -p ${D}${base_sbindir}
+       rm -f ${D}${sbindir}/mount.smbfs ${D}${base_sbindir}/mount.smbfs
+       ln -sf ${bindir}/smbmount ${D}${base_sbindir}/mount.smb
+       ln -sf ${bindir}/smbmount ${D}${base_sbindir}/mount.smbfs
        rm -f ${D}${bindir}/*.old
        rm -f ${D}${sbindir}/*.old
        install -c -m 755 mount.cifs  ${D}${bindir}/mount.cifs
index f477001..96343aa 100644 (file)
@@ -33,8 +33,6 @@ EXTRA_OECONF += "\
 
 do_install_append() {
        install -d "${D}${localstatedir}/log"
-       rm -f ${D}/sbin/mount.smbfs
-       ln -sf smbmount ${D}${sbindir}/mount.smbfs
        install -d "${D}${sysconfdir}/init.d"
        install -c -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/samba
        install -d "${D}${sysconfdir}/samba"