diff options
author | Kevin Rocard <kevinx.rocard@intel.com> | 2013-05-07 17:29:53 +0200 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-12 17:03:53 +0100 |
commit | 6ac99e5d2314f6629849954f22f54e7b22226efb (patch) | |
tree | 17b3753a84c21d6fd3efabc79b5f858a5068406f /remote-process | |
parent | 3949b34f8e0a39807b1dae017df5c7f37de8fa7b (diff) | |
download | external_parameter-framework-6ac99e5d2314f6629849954f22f54e7b22226efb.zip external_parameter-framework-6ac99e5d2314f6629849954f22f54e7b22226efb.tar.gz external_parameter-framework-6ac99e5d2314f6629849954f22f54e7b22226efb.tar.bz2 |
PFW: Fix missing space before := in makefiles
BZ: 107991
Some makefile were missing a space before := in makefiles
Add a space before :=
Change-Id: Ie04cd85e3b21a0628f612a374b5c3d294fd724db
Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com>
Reviewed-on: http://android.intel.com:8080/109305
Reviewed-by: Denneulin, Guillaume <guillaume.denneulin@intel.com>
Reviewed-by: Gonzalve, Sebastien <sebastien.gonzalve@intel.com>
Reviewed-by: cactus <cactus@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 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/remote-process/Android.mk b/remote-process/Android.mk index 7f1c59c..4ab2f04 100644 --- a/remote-process/Android.mk +++ b/remote-process/Android.mk @@ -1,15 +1,15 @@ -LOCAL_PATH:= $(call my-dir) +LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_PATH := -LOCAL_SRC_FILES:= \ +LOCAL_SRC_FILES := \ main.cpp -LOCAL_MODULE:= remote-process +LOCAL_MODULE := remote-process LOCAL_MODULE_TAGS := optional |