mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
aaba2764ac
commit
ba4e951b53
2 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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}}
|
||||
|
|
Loading…
Reference in a new issue