diff options
author | Giuseppe Foti <foti.giuseppe@gmail.com> | 2023-07-27 15:15:46 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2023-07-28 08:58:33 +0200 |
commit | c372ead7e99ba59b53a6c656cc361491ff08f301 (patch) | |
tree | ff4fd569420fe39bb79b42c6f5119f8f25c5db1e | |
parent | dev-python/flask-cors: Stabilize 4.0.0 ALLARCHES, #911349 (diff) | |
download | gentoo-c372ead7e99ba59b53a6c656cc361491ff08f301.tar.gz gentoo-c372ead7e99ba59b53a6c656cc361491ff08f301.tar.bz2 gentoo-c372ead7e99ba59b53a6c656cc361491ff08f301.zip |
app-admin/logcheck: remove call to non existend command in Makefile
Closes: https://bugs.gentoo.org/911281
Signed-off-by: Giuseppe Foti <foti.giuseppe@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32075
Signed-off-by: Florian Schmaus <flow@gentoo.org>
-rw-r--r-- | app-admin/logcheck/logcheck-1.4.3.ebuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app-admin/logcheck/logcheck-1.4.3.ebuild b/app-admin/logcheck/logcheck-1.4.3.ebuild index 2465085e8381..b9657a685030 100644 --- a/app-admin/logcheck/logcheck-1.4.3.ebuild +++ b/app-admin/logcheck/logcheck-1.4.3.ebuild @@ -41,6 +41,9 @@ src_prepare() { # Set version from PV, without using dpkg sed -i -e "s/^VERSION=unknown/VERSION=\"${PV}\"/" "${S}/src/logcheck" || die + # QA-fix remove call to non existent command | Bug: #911281 + sed -i "/dpkg-parsechangelog/d" "${S}/Makefile" || die + # Add /var/log/messages to checked logs echo "/var/log/messages" >> "${S}/etc/logcheck.logfiles.d/syslog.logfiles" || die |