diff options
author | Cy Schubert <cy@FreeBSD.org> | 2023-02-11 16:13:05 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2023-02-11 16:15:46 +0000 |
commit | 6b4b52c843c34374e12b0b894129549caf22b276 (patch) | |
tree | da55bb65b2a97b7761662b8a4af3383071bf155d | |
parent | 1f0293841d086d6310cd7e60bae475e8fa139609 (diff) | |
download | ports-6b4b52c843c34374e12b0b894129549caf22b276.tar.gz ports-6b4b52c843c34374e12b0b894129549caf22b276.zip |
sysutils/nut*: Add missing SUB_LIST
a4cc1509a9b6 failed to add NUT_GROUP to SUB_LIST. This fixes the error.
PR: 269497
Submitted by: dvl
Reported by: dvl
Fixes: a4cc1509a9b6
-rw-r--r-- | sysutils/nut-devel/Makefile | 4 | ||||
-rw-r--r-- | sysutils/nut/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sysutils/nut-devel/Makefile b/sysutils/nut-devel/Makefile index cb43ea1fba25..225b9ff4d86f 100644 --- a/sysutils/nut-devel/Makefile +++ b/sysutils/nut-devel/Makefile @@ -1,6 +1,6 @@ PORTNAME= nut PORTVERSION= ${NUT_COMMIT_DATE} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils PKGNAMESUFFIX= -devel # MASTER_SITES= http://www.networkupstools.org/source/${PORTVERSION:R}/ @@ -60,7 +60,7 @@ IPMIPSU_DESC= Use nut-ipmipsu support (experimental) SSL_OFF_DESC= No SSL support USE_RC_SUBR= nut nut_upsmon nut_upslog -SUB_LIST+= STATEDIR=${STATEDIR} +SUB_LIST+= STATEDIR=${STATEDIR} NUT_GROUP=${NUT_GROUP} PLIST_SUB+= STATEDIR=${STATEDIR} PORTDOCS= * diff --git a/sysutils/nut/Makefile b/sysutils/nut/Makefile index 183da6e7a437..9a45bc5d7d1e 100644 --- a/sysutils/nut/Makefile +++ b/sysutils/nut/Makefile @@ -1,6 +1,6 @@ PORTNAME= nut PORTVERSION= 2.8.0 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= sysutils MASTER_SITES= http://www.networkupstools.org/source/${PORTVERSION:R}/ @@ -50,7 +50,7 @@ IPMIPSU_DESC= Use nut-ipmipsu support (experimental) SSL_OFF_DESC= No SSL support USE_RC_SUBR= nut nut_upsmon nut_upslog -SUB_LIST+= STATEDIR=${STATEDIR} +SUB_LIST+= STATEDIR=${STATEDIR} NUT_GROUP=${NUT_GROUP} PLIST_SUB+= STATEDIR=${STATEDIR} PORTDOCS= * |