diff options
author | Vincent Lefevre <vincent@vinc17.net> | 2021-09-07 14:30:24 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2021-09-15 00:29:52 +0200 |
commit | e178f1914a35d6bd92c0818ced2d82b085eca000 (patch) | |
tree | 85bcc9370c0edd9402c93afecf85fdd5c916734b /debian/rules | |
parent | cd6dff21eb1c054576f410d262563c6a9823b04f (diff) | |
download | zsh-e178f1914a35d6bd92c0818ced2d82b085eca000.tar.gz zsh-e178f1914a35d6bd92c0818ced2d82b085eca000.zip |
Replace all occurrences of transitional package libncursesw5-dev with libncurses-dev
Remove resulting duplicates. (Related to commit 71ee4aef.) Fixes FTBFS
iff libncursesw5-dev was not installed. (Closes: #993861)
Gbp-Dch: Full
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 24509c834..71c278146 100755 --- a/debian/rules +++ b/debian/rules @@ -51,7 +51,7 @@ endif # resulting syntax might be invalid. Needed for packages which are # also provided by other packages like libncurses-dev and # libncursesw5-dev which both fulfil the according build-dependency. -BUILT_USING=$(shell for pkg in libcap-dev libncurses-dev libncursesw5-dev libpcre3-dev libc-dev-bin; do dpkg-query -f '$${status}' -W $$pkg 2>&1 | grep -Fq installed && dpkg-query -f '$${source:Package} (= $${source:Version}), ' -W $$pkg; done) +BUILT_USING=$(shell for pkg in libcap-dev libncurses-dev libpcre3-dev libc-dev-bin; do dpkg-query -f '$${status}' -W $$pkg 2>&1 | grep -Fq installed && dpkg-query -f '$${source:Package} (= $${source:Version}), ' -W $$pkg; done) %: dh $@ |