1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

Fix error message when not finding a package

This commit is contained in:
Baptiste Daroussin 2015-09-02 21:23:47 +00:00
parent cd537ade57
commit 8f2fe367d2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=395910

View File

@ -56,7 +56,7 @@ find_package()
echo "===> ${dp_PKGNAME} depends on package: $1 - found"
return 0
fi
echo "===> ${dp_PKGNAME} depends on file: $1 - not found"
echo "===> ${dp_PKGNAME} depends on package: $1 - not found"
return 1
}