commit: c372ead7e99ba59b53a6c656cc361491ff08f301 Author: Giuseppe Foti <foti.giuseppe <AT> gmail <DOT> com> AuthorDate: Thu Jul 27 13:15:46 2023 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Fri Jul 28 06:58:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c372ead7
app-admin/logcheck: remove call to non existend command in Makefile Closes: https://bugs.gentoo.org/911281 Signed-off-by: Giuseppe Foti <foti.giuseppe <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/32075 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> app-admin/logcheck/logcheck-1.4.3.ebuild | 3 +++ 1 file changed, 3 insertions(+) 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
