diff options
author | Steve Langasek <steve.langasek@canonical.com> | 2012-06-11 22:36:02 +0000 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2013-12-01 16:08:58 +0100 |
commit | fb83d0ccdda584a5aa9a93d87c6c71a03bc24ed4 (patch) | |
tree | d32289606e1ee473026048cf20040f65f8e23752 /prepare-release | |
parent | 5555ef9850b7e66aa02d39bb7d624fdf3e43edb2 (diff) |
prepare-release: declare the packages needed as source build deps.
Diffstat (limited to 'prepare-release')
-rwxr-xr-x | prepare-release | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/prepare-release b/prepare-release index 2d8502d7f..a9cc49cfd 100755 --- a/prepare-release +++ b/prepare-release @@ -1,11 +1,15 @@ #!/bin/sh +set -e + VERSION=$(dpkg-parsechangelog | sed -n -e '/^Version:/s/^Version: //p') DISTRIBUTION=$(dpkg-parsechangelog | sed -n -e '/^Distribution:/s/^Distribution: //p') LIBAPTPKGVERSION="$(awk -v ORS='.' '/^\#define APT_PKG_M/ {print $3}' apt-pkg/init.h | sed 's/\.$//')" LIBAPTINSTVERSION="$(egrep '^MAJOR=' apt-inst/makefile |cut -d '=' -f 2)" +dpkg-checkbuilddeps -d 'libxml2-utils' + if [ "$1" = 'pre-export' ]; then libraryversioncheck() { local LIBRARY="$1" |