There is a problem when I "make install DESTDIR=/build", to create a package and after I install it in /. /sbin/mount.smbfs linked to /build/usr/bin/smbmount This symlink should linked to /usr/bin/smbmount I investigate a little, the problem seems to be in source/script/installbin.sh line 31 ln -sf $BINDIR/$p2 $DESTDIR/sbin/mount.smbfs I have a suggestion: ln -sf `echo $BINDIR|sed "s@$DESTDIR@@"`/$p2 $DESTDIR/sbin/mount.smbfs What do you think about it?
This is usually fixed in the packaging scripts, not in make install. In fact, the line you site in Samba's install scripts was the direct result of anotehr bug report.
I'm so sorry DuDE. This is a real bug. :)
Thanks Vincent for the analysis. But the problem is also one level above in the calling Makefile. We pass DESTDIR while making the installbin rule as second arg to script/installbin.sh. But we _also_ prepend DESTDIR to each DIR we pass. This was required as we never used DESTDIR in script/installbin.sh while we installed the binaries. At the moment we only used it for the sym link of mount.smbfs. Fixed with subversion revision 13642.