diff options
| author | Lexi Winter <ivy@FreeBSD.org> | 2025-09-30 04:25:38 +0000 |
|---|---|---|
| committer | Lexi Winter <ivy@FreeBSD.org> | 2025-09-30 04:29:47 +0000 |
| commit | a087b4aec38c37d47b888aa8411948250cdd4bc0 (patch) | |
| tree | 7ac4461617f0fb7344af2eb28dbc955594dcd326 | |
| parent | f1a372ed88b11c1e096523c0b6cf62902c1db37c (diff) | |
create-sets.sh: Always build the base sets
Since all packages were moved to the optional set, no packages are
directly in the base sets, which means nothing caused the base sets
to be built. Add the base sets to create-sets.sh so they're always
built.
Fixes: eaecc9551ae4 ("packages: Add an "optional" set")
MFC after: 1 day
| -rwxr-xr-x | release/packages/create-sets.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/release/packages/create-sets.sh b/release/packages/create-sets.sh index 8c564ecfeb92..09567657c161 100755 --- a/release/packages/create-sets.sh +++ b/release/packages/create-sets.sh @@ -17,6 +17,10 @@ repodir="$1"; shift # generate-set-ucl.lua. UCL_VARS="$@" +# Nothing is explicitly added to set-base, so it wouldn't get built unless +# we list it here. +SETS="base base-dbg base-jail base-jail-dbg" + for pkg in "$repodir"/*.pkg; do # If the package name doesn't containing a '-', then it's # probably data.pkg or packagesite.pkg, which are not real |
