From d626dc42ca4bc8ba5ef7e349be425ec70772e6e2 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Wed, 6 Oct 2021 16:32:01 +0200 Subject: [PATCH] Fix eln build Explicitly remove the gdialog binary: even though it doesn't get built for Fedora, it still does for eln as the build root is different. Just rm -f it so that we can be sure it doesn't appear in the package. --- zenity.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/zenity.spec b/zenity.spec index 5dd4193..b03f293 100644 --- a/zenity.spec +++ b/zenity.spec @@ -1,6 +1,6 @@ Name: zenity Version: 3.41.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Display dialog boxes from shell scripts License: LGPLv2+ @@ -31,6 +31,9 @@ from the same family as dialog, Xdialog, and cdialog. %install %meson_install +# we don't want a perl dependency just for this +rm -f $RPM_BUILD_ROOT%{_bindir}/gdialog + %find_lang zenity --with-gnome @@ -43,6 +46,9 @@ from the same family as dialog, Xdialog, and cdialog. %changelog +* Wed Oct 06 2021 Kalev Lember - 3.41.0-2 +- Fix eln build + * Mon Aug 23 2021 Kalev Lember - 3.41.0-1 - Update to 3.41.0 - Switch to meson build system