diff options
author | asami <asami@FreeBSD.org> | 1995-10-02 22:12:47 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-10-02 22:12:47 +0000 |
commit | 7e783937250c4d80f11ff70b8d1b6920bad3eed1 (patch) | |
tree | 3dc2c4dc37c744a728200f1e06b7ed8f999f85ca /Mk | |
parent | 272f5729ca2c50ba9df8e27d01f9b213db54c362 (diff) | |
download | FreeBSD-ports-7e783937250c4d80f11ff70b8d1b6920bad3eed1.zip FreeBSD-ports-7e783937250c4d80f11ff70b8d1b6920bad3eed1.tar.gz |
Use full pathname for ldconfig (/sbin/ldconfig).
Hinted by: joerg
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 90b5cbc..c495879 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.178 1995/09/13 10:14:31 asami Exp $ +# $Id: bsd.port.mk,v 1.179 1995/09/18 08:01:20 asami Exp $ # # Please view me with 4 column tabs! @@ -1041,7 +1041,7 @@ lib-depends: @for i in ${LIB_DEPENDS}; do \ lib=`/bin/echo $$i | /usr/bin/sed -e 's/:.*//'`; \ dir=`/bin/echo $$i | /usr/bin/sed -e 's/.*://'`; \ - if ldconfig -r | grep -q -e "-l$$lib"; then \ + if /sbin/ldconfig -r | grep -q -e "-l$$lib"; then \ ${ECHO_MSG} "===> ${PKGNAME} depends on shared library: $$lib - found"; \ else \ ${ECHO_MSG} "===> ${PKGNAME} depends on shared library: $$lib - not found"; \ |