From 333f950ddfc3c7da101758aa65d066b47cecb38f Mon Sep 17 00:00:00 2001 From: Youngjae Shin Date: Tue, 1 Sep 2015 11:55:06 +0900 Subject: [PATCH] fix RPMLINT warning and add debug option for debuginfo package Change-Id: I6e275794a33c2ca77252a5b3f1e61ced085e7611 --- build_common/tizen/SConscript | 1 + packaging/iotivity.spec | 8 ++++---- resource/include/OCApi.h | 0 3 files changed, 5 insertions(+), 4 deletions(-) mode change 100755 => 100644 resource/include/OCApi.h diff --git a/build_common/tizen/SConscript b/build_common/tizen/SConscript index cc3b535..63799e4 100644 --- a/build_common/tizen/SConscript +++ b/build_common/tizen/SConscript @@ -10,6 +10,7 @@ print "Reading linux configuration script" if env.get('RELEASE'): env.AppendUnique(CCFLAGS = ['-Os']) env.AppendUnique(CPPDEFINES = ['NDEBUG']) + env.AppendUnique(CCFLAGS = ['-g']) else: env.AppendUnique(CCFLAGS = ['-g']) diff --git a/packaging/iotivity.spec b/packaging/iotivity.spec index 1f76d26..a56402e 100644 --- a/packaging/iotivity.spec +++ b/packaging/iotivity.spec @@ -2,7 +2,7 @@ Name: iotivity Version: 0.9.2 Release: 0 Summary: IoTivity Base Stack & IoTivity Services -Group: System Environment/Libraries +Group: Network & Connectivity/Other License: Apache-2.0 URL: https://www.iotivity.org/ Source0: %{name}-%{version}.tar.bz2 @@ -31,7 +31,7 @@ IoTivity Base (RICH & LITE) Stack & IoTivity Services %package service Summary: Development files for %{name} -Group: Development/Libraries +Group: Network & Connectivity/Service Requires: %{name} = %{version}-%{release} %description service @@ -40,7 +40,7 @@ developing applications that use %{name}-service. %package test Summary: Development files for %{name} -Group: Development/Libraries +Group: Network & Connectivity/Testing Requires: %{name} = %{version}-%{release} %description test @@ -49,7 +49,7 @@ how the iotivity works using %{name}-test %package devel Summary: Development files for %{name} -Group: Development/Libraries +Group: Network & Connectivity/Development Requires: %{name} = %{version}-%{release} %description devel diff --git a/resource/include/OCApi.h b/resource/include/OCApi.h old mode 100755 new mode 100644 -- 2.7.4