diff options
author | Chia-chi Yeh <chiachi@android.com> | 2009-09-22 00:43:13 +0800 |
---|---|---|
committer | Chia-chi Yeh <chiachi@android.com> | 2009-09-22 00:43:13 +0800 |
commit | c5dbc5e98ab8342d04f85c051c545c0980f5d98b (patch) | |
tree | fd7de16d7a728837eb2bb931f755f7c2e71381c7 /cmds | |
parent | 15b047cfb2146e37c76df303b4a5720009ec0aed (diff) | |
download | frameworks_native-c5dbc5e98ab8342d04f85c051c545c0980f5d98b.zip frameworks_native-c5dbc5e98ab8342d04f85c051c545c0980f5d98b.tar.gz frameworks_native-c5dbc5e98ab8342d04f85c051c545c0980f5d98b.tar.bz2 |
keystore: exclude builds for simulator.
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/keystore/Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmds/keystore/Android.mk b/cmds/keystore/Android.mk index 1b1bebd..15a199f 100644 --- a/cmds/keystore/Android.mk +++ b/cmds/keystore/Android.mk @@ -14,6 +14,8 @@ # limitations under the License. # +ifneq ($(TARGET_SIMULATOR),true) + LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) @@ -30,3 +32,5 @@ LOCAL_SHARED_LIBRARIES := libcutils libcrypto LOCAL_MODULE:= keystore_cli LOCAL_MODULE_TAGS := debug include $(BUILD_EXECUTABLE) + +endif |