Bjørn Lie
4e500ea167
also tuned-ppd, which provides the same dbus interface. If the user does not chose between the two, we suggest the original power-profiles-daemon. - Fix escaping of commented out patch: with RPM 4.20, %patch becomes a standard, expandable macro, that can span more than one line. Commenting out with #%patch can thus lead to invalid results. OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-control-center?expand=0&rev=578
16 lines
532 B
Diff
16 lines
532 B
Diff
diff --git a/panels/info-overview/cc-info-overview-panel.c b/panels/info-overview/cc-info-overview-panel.c
|
|
index 700df61..846ac80 100644
|
|
--- a/panels/info-overview/cc-info-overview-panel.c
|
|
+++ b/panels/info-overview/cc-info-overview-panel.c
|
|
@@ -111,8 +111,8 @@ does_gnome_software_allow_updates (void)
|
|
static gboolean
|
|
does_gnome_software_exist (void)
|
|
{
|
|
- g_autofree gchar *path = g_find_program_in_path ("gnome-software");
|
|
- return path != NULL;
|
|
+ /* Don't use gnome-software in SLE. */
|
|
+ return FALSE;
|
|
}
|
|
|
|
static gboolean
|