From b1fa48317a6ccb978117fae73c7453e07923e3d7 Mon Sep 17 00:00:00 2001 From: janw Date: Thu, 3 Sep 2009 11:46:04 +0000 Subject: [PATCH] Multiple Values for depends are now parsed as with update-gosa (separate depends by comma). git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14206 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/dh-make-gosa | 1 + 1 file changed, 1 insertion(+) diff --git a/gosa-core/dh-make-gosa b/gosa-core/dh-make-gosa index 9663cfd47..33b8e9e53 100755 --- a/gosa-core/dh-make-gosa +++ b/gosa-core/dh-make-gosa @@ -48,6 +48,7 @@ load_dsc() { PL_NAME=$(sed -n 's/"//g;s/^name\s*=\s*\(.*\)$/\1/p' "$1") PL_VERSION=$(sed -n 's/"//g;s/^version\s*=\s*\(.*\)$/\1/p' "$1") TDEPENDS=$(sed -n 's/"//g;s/^depends\s*=\s*\(.*\)$/\1/p' "$1") + TDEPENDS=$(echo $TDEPENDS | tr , " ") for dep in $TDEPENDS; do PL_DEPENDS="gosa-plugin-$dep, $PL_DEPENDS" done -- 2.30.2