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:   jperkin
Date:           Thu Mar 26 12:23:54 UTC 2020

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

Log Message:
mk: Support undefined UNLIMIT_RESOURCES.

Currently virtualsize is only defined for NetBSD, breaking builds that use it
on any other platform.  Adding defaults for all other platforms should be done
at some point, this at least unbreaks package builds for now and provides a
safer default for any future additions.


To generate a diff of this commit:
cvs rdiff -u -r1.2035 -r1.2036 pkgsrc/mk/bsd.pkg.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.mk
diff -u pkgsrc/mk/bsd.pkg.mk:1.2035 pkgsrc/mk/bsd.pkg.mk:1.2036
--- pkgsrc/mk/bsd.pkg.mk:1.2035 Sun Feb  9 22:39:20 2020
+++ pkgsrc/mk/bsd.pkg.mk        Thu Mar 26 12:23:54 2020
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.pkg.mk,v 1.2035 2020/02/09 22:39:20 rillig Exp $
+#      $NetBSD: bsd.pkg.mk,v 1.2036 2020/03/26 12:23:54 jperkin Exp $
 #
 # This file is in the public domain.
 #
@@ -231,7 +231,7 @@ _ZERO_FILESIZE_P=   ${AWK} 'END { exit (NR
 _NONZERO_FILESIZE_P=   ${AWK} 'END { exit (NR > 0) ? 0 : 1; }'
 
 # Automatically increase process limit where necessary for building.
-_ULIMIT_CMD=           ${UNLIMIT_RESOURCES:@_lim_@${ULIMIT_CMD_${_lim_}};@}
+_ULIMIT_CMD=           ${UNLIMIT_RESOURCES:@_lim_@${ULIMIT_CMD_${_lim_}:U\:};@}
 
 _NULL_COOKIE=          ${WRKDIR}/.null
 



Home | Main Index | Thread Index | Old Index