create-mkspec.sh: Tolerate comma-separated subpackages
subpackages = "run, devel" is not tolerated by create-mkspec.sh. It expects "run devel", which goes against the grain of the other metadata, so make it at least tolerate the more common comma-separated variant. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
670472abf5
commit
d3e581f03d
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ dir=`dirname $0`
|
||||||
inifile="$1"
|
inifile="$1"
|
||||||
. $dir/ini-tools.sh
|
. $dir/ini-tools.sh
|
||||||
|
|
||||||
subpackages=`cfg_value global.subpackages`
|
subpackages=`cfg_value global.subpackages | sed 's/,/ /g'`
|
||||||
license=`cfg_value global.license`
|
license=`cfg_value global.license`
|
||||||
[ "$license" ] || license="janware GmbH proprietary license"
|
[ "$license" ] || license="janware GmbH proprietary license"
|
||||||
vendor=`cfg_value global.vendor`
|
vendor=`cfg_value global.vendor`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue