svn commit: r365382 - head/Mk/Scripts
Bryan Drewery
bdrewery at FreeBSD.org
Tue Aug 19 14:36:49 UTC 2014
Author: bdrewery
Date: Tue Aug 19 14:36:49 2014
New Revision: 365382
URL: http://svnweb.freebsd.org/changeset/ports/365382
QAT: https://qat.redports.org/buildarchive/r365382/
Log:
- Add the same workaround for ignoring PREFIX/info removal when PREFIX !=
LOCALBASE, as check-stagedir has.
With hat: portmgr
Modified:
head/Mk/Scripts/check_leftovers.sh
Modified: head/Mk/Scripts/check_leftovers.sh
==============================================================================
--- head/Mk/Scripts/check_leftovers.sh Tue Aug 19 14:33:54 2014 (r365381)
+++ head/Mk/Scripts/check_leftovers.sh Tue Aug 19 14:36:49 2014 (r365382)
@@ -108,11 +108,19 @@ while read modtype path extra; do
esac
;;
-)
+ # Skip removal of PREFIX and PREFIX/info from
+ # bsd.port.mk for now.
# Skip if it is PREFIX and non-LOCALBASE. See misc/kdehier4
# or mail/qmail for examples
[ "${path}" = "${PREFIX}" -a "${LOCALBASE}" != "${PREFIX}" ] &&
ignore_path=1
+ # The removal of info may be a bug; it's part of BSD.local.dist.
+ # See ports/74691
+
+ [ "${sub_path}" = "info" -a "${LOCALBASE}" != "${PREFIX}" ] &&
+ ignore_path=1
+
[ $ignore_path -eq 0 ] && echo "- ${sub_path}"
;;
M)
More information about the svn-ports-all
mailing list