svn commit: r390989 - head/Mk/Scripts
Baptiste Daroussin
bapt at FreeBSD.org
Tue Jun 30 19:54:24 UTC 2015
Author: bapt
Date: Tue Jun 30 19:54:23 2015
New Revision: 390989
URL: https://svnweb.freebsd.org/changeset/ports/390989
Log:
Add PATH environment when trying to find libraries this fixes building under
qemu emulation
Reported by: Sylvain Garrigues (via #poudriere)
Tested by: Sylvain Garrigues (via #poudriere)
Modified:
head/Mk/Scripts/do-depends.sh
Modified: head/Mk/Scripts/do-depends.sh
==============================================================================
--- head/Mk/Scripts/do-depends.sh Tue Jun 30 19:40:04 2015 (r390988)
+++ head/Mk/Scripts/do-depends.sh Tue Jun 30 19:54:23 2015 (r390989)
@@ -94,7 +94,7 @@ find_file_path()
find_lib()
{
echo -n "===> ${dp_PKGNAME} depends on shared library: $1"
- libfile=$(env -i LIB_DIRS="${dp_LIB_DIRS}" LOCALBASE="${dp_LOCALBASE}" ${dp_SH} ${dp_SCRIPTSDIR}/find-lib.sh $1)
+ libfile=$(env -i PATH="${PATH}" LIB_DIRS="${dp_LIB_DIRS}" LOCALBASE="${dp_LOCALBASE}" ${dp_SH} ${dp_SCRIPTSDIR}/find-lib.sh $1)
if [ -z "${libfile}" ]; then
echo " - not found"
return 1
More information about the svn-ports-all
mailing list