diff options
author | Kevin Rocard <kevinx.rocard@intel.com> | 2013-06-25 10:30:37 +0200 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-12 17:03:58 +0100 |
commit | 5cdc972bf6145115a4a198e8d4bac5ec1a133465 (patch) | |
tree | ad40cef77c05bafeb4efe7be2345f86cdbeab6e7 /remote-process | |
parent | 310c4993d94430dfaa790160c15785992131133a (diff) | |
download | external_parameter-framework-5cdc972bf6145115a4a198e8d4bac5ec1a133465.zip external_parameter-framework-5cdc972bf6145115a4a198e8d4bac5ec1a133465.tar.gz external_parameter-framework-5cdc972bf6145115a4a198e8d4bac5ec1a133465.tar.bz2 |
[Makefile] Fix useless CFLAGS
BZ: 115743
The patch e2c35a01 deleted -Wno-non-virtual-dtor flags
by deleting the common_cflags definition
but it was still used in the rest of the makefiles.
Delete the common_cflags occurrences.
Change-Id: If4301a774c45594b36962ce5b82ae5656c6a5bb1
Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com>
Reviewed-on: http://android.intel.com:8080/115292
Reviewed-by: Denneulin, Guillaume <guillaume.denneulin@intel.com>
Reviewed-by: De Chivre, Renaud <renaud.de.chivre@intel.com>
Tested-by: Dixon, CharlesX <charlesx.dixon@intel.com>
Reviewed-by: buildbot <buildbot@intel.com>
Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'remote-process')
-rw-r--r-- | remote-process/Android.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/remote-process/Android.mk b/remote-process/Android.mk index dfa7e03..8f0ca61 100644 --- a/remote-process/Android.mk +++ b/remote-process/Android.mk @@ -25,7 +25,6 @@ LOCAL_SRC_FILES := $(common_src_files) LOCAL_MODULE := $(common_module) LOCAL_MODULE_TAGS := $(common_module_tags) -LOCAL_CFLAGS += $(common_cflags) LOCAL_C_INCLUDES += \ $(common_c_includes) \ external/stlport/stlport/ \ @@ -46,8 +45,6 @@ LOCAL_SRC_FILES := $(common_src_files) LOCAL_MODULE := $(common_module)_host LOCAL_MODULE_TAGS := $(common_module_tags) -LOCAL_CFLAGS += $(common_cflags) - LOCAL_C_INCLUDES += \ $(common_c_includes) |