bake_debian_files.sh: If DEB_DEPENDS is non-empty, prepend a comma.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@37851 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Ivan Vučica 2014-05-06 18:56:58 +00:00
parent aaba2764ac
commit ba4e951b53
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2014-05-06 Ivan Vucica <ivan@vucica.net>
* bake_debian_files.sh: If DEB_DEPENDS is non-empty, prepend a
comma.
2014-05-06 Ivan Vucica <ivan@vucica.net>
* GNUmakefile.in: Tarball may now have the SVN revision and

View file

@ -66,6 +66,9 @@ DEB_BUILD_DEPENDS="debhelper (>= 9), cdbs"
else
DEB_BUILD_DEPENDS="${DEB_BUILD_DEPENDS}, debhelper (>= 9), cdbs"
fi
if [ ! -z "${DEB_DEPENDS}" ]; then
DEB_DEPENDS=", ${DEB_DEPENDS}"
fi
DEB_DEPENDS='${shlibs:Depends}, ${misc:Depends}'" ${DEB_DEPENDS}"
DEB_DISTRIBUTION=${DEB_DISTRIBUTION:-${default_distribution}}