mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
e6beafd1cf
knob for Kerberos is misleading, as it is necessary only for ADS support; the installation scripts renamed installed binaries to *.old. Also, delete the USE_OPENLDAP_VER?= line, it is not only not needed once you set USE_OPENLDAP=yes, it can positively interfere with LDAP version bumps PR: ports/64057 Submitted by: Timur I. Bakeyev <timur@gnu.org> (maintainer) Reviewd by: eik
13 lines
363 B
Bash
13 lines
363 B
Bash
--- script/installbin.sh.orig Tue Mar 9 15:33:32 2004
|
|
+++ script/installbin.sh Tue Mar 9 15:35:43 2004
|
|
@@ -17,8 +17,7 @@
|
|
p2=`basename $p`
|
|
echo Installing $p as $BINDIR/$p2
|
|
if [ -f $BINDIR/$p2 ]; then
|
|
- rm -f $BINDIR/$p2.old
|
|
- mv $BINDIR/$p2 $BINDIR/$p2.old
|
|
+ rm -f $BINDIR/$p2 $BINDIR/$p2.old
|
|
fi
|
|
cp $p $BINDIR/
|
|
chmod $INSTALLPERMS $BINDIR/$p2
|