diff options
author | Simon Shields <keepcalm444@gmail.com> | 2015-12-23 14:29:13 +1100 |
---|---|---|
committer | Simon Shields <keepcalm444@gmail.com> | 2015-12-23 14:29:13 +1100 |
commit | 68a1cea0871a356d7c6e2989ec576bff3178db7e (patch) | |
tree | 325f1ae73a3a8ff647dbcda1c887487033e04601 /libsensors | |
parent | f115fa584b0a929ba504b51899b97c706404e6dd (diff) | |
download | device_samsung_i9300-68a1cea0871a356d7c6e2989ec576bff3178db7e.zip device_samsung_i9300-68a1cea0871a356d7c6e2989ec576bff3178db7e.tar.gz device_samsung_i9300-68a1cea0871a356d7c6e2989ec576bff3178db7e.tar.bz2 |
i9300: ensure we don't build opensource sensors
currently the compass seems to be really broken, so we'll use the
proprietary ones for now
Change-Id: I195e0765da7789d38940835d9e8c6eff4e09a900
Diffstat (limited to 'libsensors')
-rw-r--r-- | libsensors/Android.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libsensors/Android.mk b/libsensors/Android.mk index 8d15195..8bdcd66 100644 --- a/libsensors/Android.mk +++ b/libsensors/Android.mk @@ -12,7 +12,7 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. - +ifeq ($(BOARD_USES_OPENSOURCE_SENSORS),true) LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) @@ -46,3 +46,4 @@ LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw LOCAL_MODULE_TAGS := optional include $(BUILD_SHARED_LIBRARY) +endif |