pkgbase: Fix dependancies

The package name is converted with _ instead of - as we have some variables
that cannot contain -
Convert back the dependancies with - instead of _
This commit is contained in:
Emmanuel Vadot 2020-08-07 10:20:39 +00:00
parent da34299940
commit 096026e516
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=364009

View File

@ -97,6 +97,8 @@ main() {
outname="${outname%%_*}"
pkgdeps="$(echo ${pkgdeps} | tr '_' '-')"
desc="$(make -C ${srctree}/release/packages -f Makefile.package -V ${outname}_DESC)"
comment="$(make -C ${srctree}/release/packages -f Makefile.package -V ${outname}_COMMENT)"