Date: Tue, 19 Aug 2014 14:36:49 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365382 - head/Mk/Scripts Message-ID: <201408191436.s7JEanUg069762@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408191436.s7JEanUg069762>