From 1e549ac219a4e9c00406c33bf6f8d5af57f30424 Mon Sep 17 00:00:00 2001 From: SangYoun Kwak Date: Fri, 13 Jan 2023 17:21:13 +0900 Subject: [PATCH] Modify the requirement of devel package The "devel" package gives hint about libraries to use the "sensor" package to the other packages. Before this commit, the "devel" package required the "sensor-dummy" package. It was valid when the "sensor-dummy" has "libsensor.so.4". But now, the "sensor-dummy" has no real "libsensor.so.4" but has "libsensor-dummy.so" so the other packages which requires the package "sensor" will require "libsensor-dummy.so", which is not correct. Modifying the requirement of devel package as the "sensord" will fix this. Change-Id: I25eaa772bcfd7edbee46aaf823adfef36630f70e Signed-off-by: SangYoun Kwak --- packaging/sensord.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/sensord.spec b/packaging/sensord.spec index 643863c..407863e 100644 --- a/packaging/sensord.spec +++ b/packaging/sensord.spec @@ -52,7 +52,7 @@ Installing %{name} replaces this dummy library with the actually functional libr %package devel Summary: Internal Sensor API (Development) Group: System/Development -Requires: %{name}-dummy = %{version}-%{release} +Requires: %{name} = %{version}-%{release} # To support old-snapshot-based package builds #Provides: libsensord-devel -- 2.7.4