UDD
Skip Quicknav
Ultimate Database
Bugs search
Maintainer dashboard
Lintian
Lintian tags
Patches
Bugs usertags
Patches
Debian Patches
Status for librdkafka/2.8.0-1
Search:
Patch
Description
Author
Forwarded
Bugs
Origin
Last update
makefile-bashism-pr4147
[PATCH] Remove small bashism from Makefile
The LICENSES.txt target makes a shell for loop, in which it tries to
evaluate the wildcard "LICENSE.*[^~]".
[^] is a bashism, and fails when /bin/sh is not bash (i.e. every
Debian-based system by default):
$ /bin/bash -c "ls LICENSE.*[^~]"
LICENSE.cjson LICENSE.fnv1a LICENSE.lz4 LICENSE.pycrc LICENSE.regexp LICENSE.tinycthread
LICENSE.crc32c LICENSE.hdrhistogram LICENSE.murmur2 LICENSE.queue LICENSE.snappy LICENSE.wingetopt
$ /bin/sh -c "ls LICENSE.*[^~]"
The equivalent POSIX way to do this is to use [!].
Tested with bash, dash and posh.
Faidon Liambotis <paravoid@debian.org>
yes
2023-01-12
Showing 1 to 1 of 1 entry
All known versions for source package 'librdkafka'
2.8.0-1
(trixie, sid)
2.0.2-1
(bookworm)
1.6.0-1
(bullseye)
Links
Package Tracker for 'librdkafka'
Debian Maintainer Dashboard for 'librdkafka'
Browse sources for 'librdkafka/2.8.0-1' on sources.debian.org
DEP3: Patch Tagging Guidelines