From: Youngjae Shin Date: Tue, 1 Sep 2015 02:55:06 +0000 (+0900) Subject: fix RPMLINT warning and add debug option for debuginfo package X-Git-Tag: submit/tizen/20150901.053918 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c0ab3e9ae5e68dbd55cc4a5c785783b8bd87d88;p=platform%2Fupstream%2Fiotivity.git fix RPMLINT warning and add debug option for debuginfo package Change-Id: I6e275794a33c2ca77252a5b3f1e61ced085e7611 --- 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