diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2023-07-05 02:27:43 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2023-07-05 18:55:51 +0200 |
commit | 138340f908926ef5bfbc3e82b1ca1cc9a97de22c (patch) | |
tree | bdf12e2df4bdd3202e99dfefb9d10b2e6a35d8d8 /debian/rules | |
parent | d2a99aa86a81f1ad931ab2d3bf8a5ba28c2ed0d4 (diff) | |
download | zsh-138340f908926ef5bfbc3e82b1ca1cc9a97de22c.tar.gz zsh-138340f908926ef5bfbc3e82b1ca1cc9a97de22c.zip |
Cherry pick multiple upstream commits to migrate pcre module to pcre2.
Update Build-Depends and Build-Using from libpcre3-dev to libpcre2-dev
accordingly.
Closes: #999918
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 2f7dfb125..4a6d8f90c 100755 --- a/debian/rules +++ b/debian/rules @@ -52,7 +52,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 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 libpcre2-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 $@ |