Accepting request 1117092 from home:yfjiang:branches:GNOME:Factory

- Revert RPM ternary operations on SLE where rpm version is not
  ready.

OBS-URL: https://build.opensuse.org/request/show/1117092
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gtk3?expand=0&rev=443
This commit is contained in:
Dominique Leuenberger 2023-10-12 06:25:14 +00:00 committed by Git OBS Bridge
parent ee6097adeb
commit 5e60f45bd7
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sun Oct 8 07:48:06 UTC 2023 - Yifan Jiang <yfjiang@suse.com>
- Revert RPM ternary operations on SLE where rpm version is not
ready.
-------------------------------------------------------------------
Tue Sep 12 14:27:25 UTC 2023 - Dominique Leuenberger <dimstar@opensuse.org>

View File

@ -399,11 +399,11 @@ cp -a %{SOURCE1} .
%build
%meson \
-D broadway_backend=%[%{with broadway} ? "true" : "false"] \
-D cloudproviders=%[%{with clouds} ? "true" : "false"] \
-D broadway_backend=%{?with_broadway:true}%{!?with_broadway:false} \
-D cloudproviders=%{?with_clouds:true}%{!?with_clouds:false} \
-D gtk_doc=true \
-D man=true \
-D tests=%[%{with tests} ? "true" : "false"] \
-D tests=%{?with_tests:true}%{!?with_tests:false} \
-D builtin_immodules=wayland,waylandgtk \
;
%meson_build