diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2014-11-13 01:15:53 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2014-11-13 01:16:37 +0100 |
commit | ad143a67865c58c1f933f9b7e86ddf1d97691034 (patch) | |
tree | 533f68e8e0276dd8a9f2207c6a7c16010bb10272 | |
parent | 0e03e62333d4a3353f8cfd05e890f96716a9fbdc (diff) | |
download | zsh-ad143a67865c58c1f933f9b7e86ddf1d97691034.tar.gz zsh-ad143a67865c58c1f933f9b7e86ddf1d97691034.zip |
Actually use ${misc:Pre-Depends} instead of hardcoded dpkg version
Fixes dpkg-gencontrol warning "unused substitution variable
${misc:Pre-Depends}".
-rw-r--r-- | debian/control | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/control b/debian/control index 55cbc3727..b32271521 100644 --- a/debian/control +++ b/debian/control @@ -32,7 +32,7 @@ Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/zsh.git Package: zsh-common Architecture: all Depends: ${misc:Depends} -Pre-Depends: dpkg (>= 1.17.2~) +Pre-Depends: ${misc:Pre-Depends} Replaces: zsh (<= 5.0.2-1) Recommends: zsh Suggests: zsh-doc @@ -53,7 +53,7 @@ Architecture: any Depends: zsh-common (= ${source:Version}), ${misc:Depends}, ${shlibs:Depends} -Pre-Depends: dpkg (>= 1.17.2~) +Pre-Depends: ${misc:Pre-Depends} Recommends: ${shlibs:Recommends} Suggests: zsh-doc Description: shell with lots of features @@ -102,7 +102,7 @@ Package: zsh-dev Architecture: any Depends: zsh-common (= ${source:Version}), ${misc:Depends} -Pre-Depends: dpkg (>= 1.17.2~) +Pre-Depends: ${misc:Pre-Depends} Section: libdevel Description: shell with lots of features (development files) Zsh is a UNIX command interpreter (shell) usable as an |