pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk



Module Name:    pkgsrc
Committed By:   kim
Date:           Thu May 29 08:08:07 UTC 2025

Modified Files:
        pkgsrc/mk: bsd.pkg.barrier.mk

Log Message:
bsd.pkg.barrier.mk: Do not set ALLOW_VULNERABLE_PACKAGES to empty

Setting ALLOW_VULNERABLE_PACKAGES to an empty value for recursive make
calls effectively prevents using the option.

Tested with a local build of select packages with no ill effects
observed.

The explicit setting to empty was introduced when bsd.pkg.barrier.mk was
created in July of 2006.  It does not appear to have been carried over
from any code replaced by bsd.pkg.barrier.mk.  Unfortunately there is no
comment or mention in the commit message about this.

Fixes PR pkg/59446


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/mk/bsd.pkg.barrier.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/bsd.pkg.barrier.mk
diff -u pkgsrc/mk/bsd.pkg.barrier.mk:1.23 pkgsrc/mk/bsd.pkg.barrier.mk:1.24
--- pkgsrc/mk/bsd.pkg.barrier.mk:1.23   Tue Jan 28 16:01:59 2025
+++ pkgsrc/mk/bsd.pkg.barrier.mk        Thu May 29 08:08:07 2025
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.barrier.mk,v 1.23 2025/01/28 16:01:59 riastradh Exp $
+# $NetBSD: bsd.pkg.barrier.mk,v 1.24 2025/05/29 08:08:07 kim Exp $
 
 _COOKIE.barrier=       ${WRKDIR}/.barrier_cookie
 
@@ -71,7 +71,7 @@ barrier: ${_BARRIER_PRE_TARGETS} ${_COOK
                ${PHASE_MSG} "Skipping installation of already handled package"; \
        else \
        cd ${.CURDIR}                                                   \
-       && ${RECURSIVE_MAKE} ${MAKEFLAGS} _PKGSRC_BARRIER=yes ALLOW_VULNERABLE_PACKAGES= ${_BARRIER_CMDLINE_TARGETS} \
+       && ${RECURSIVE_MAKE} ${MAKEFLAGS} _PKGSRC_BARRIER=yes ${_BARRIER_CMDLINE_TARGETS} \
        || {                                                            \
                exitcode="$$?";                                         \
                ${RECURSIVE_MAKE} ${MAKEFLAGS} _PKGSRC_BARRIER=yes barrier-error-check; \



Home | Main Index | Thread Index | Old Index