1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

pkgbase: Avoid hard-coding the package prefix in generate-ucl.sh

MFC after:	1 week
Sponsored by:	Innovate UK
This commit is contained in:
Mark Johnston 2024-08-26 20:46:53 +00:00
parent 85707cfdad
commit b4dd5ff5f4

View File

@ -136,7 +136,7 @@ main() {
echo 'deps: {' >> ${uclfile} echo 'deps: {' >> ${uclfile}
for dep in ${pkgdeps}; do for dep in ${pkgdeps}; do
cat <<EOF >> ${uclfile} cat <<EOF >> ${uclfile}
FreeBSD-${dep}: { ${PKG_NAME_PREFIX}-${dep}: {
origin: "base", origin: "base",
version: "${PKG_VERSION}" version: "${PKG_VERSION}"
} }