diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2014-11-20 02:48:48 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2014-11-20 02:56:11 +0100 |
commit | ab70e9dc9b0b9921dd1f50334d0af518639255ee (patch) | |
tree | 0e2843dcec79978d9285e69b98fb87c192c6836e | |
parent | 2e6b689804c4be48e6eff1b583af4c14fcb4c1a3 (diff) | |
download | zsh-ab70e9dc9b0b9921dd1f50334d0af518639255ee.tar.gz zsh-ab70e9dc9b0b9921dd1f50334d0af518639255ee.zip |
Pre-Depend on dpkg >= 1.17.14 explicitly for using symlink_to_dir with relative symlinks (Closes: #770226)
This workaround may be removed once https://bugs.debian.org/770245 is
fixed in debhelper -- which is likely the initial cause for #770226.
-rw-r--r-- | debian/control | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/debian/control b/debian/control index b32271521..6d4c197e5 100644 --- a/debian/control +++ b/debian/control @@ -32,7 +32,8 @@ Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/zsh.git Package: zsh-common Architecture: all Depends: ${misc:Depends} -Pre-Depends: ${misc:Pre-Depends} +Pre-Depends: ${misc:Pre-Depends}, + dpkg (>= 1.17.14) Replaces: zsh (<= 5.0.2-1) Recommends: zsh Suggests: zsh-doc @@ -53,7 +54,8 @@ Architecture: any Depends: zsh-common (= ${source:Version}), ${misc:Depends}, ${shlibs:Depends} -Pre-Depends: ${misc:Pre-Depends} +Pre-Depends: ${misc:Pre-Depends}, + dpkg (>= 1.17.14) Recommends: ${shlibs:Recommends} Suggests: zsh-doc Description: shell with lots of features @@ -102,7 +104,8 @@ Package: zsh-dev Architecture: any Depends: zsh-common (= ${source:Version}), ${misc:Depends} -Pre-Depends: ${misc:Pre-Depends} +Pre-Depends: ${misc:Pre-Depends}, + dpkg (>= 1.17.14) Section: libdevel Description: shell with lots of features (development files) Zsh is a UNIX command interpreter (shell) usable as an |