Skip to content

Commit

Permalink
fix prebuilt make file
Browse files Browse the repository at this point in the history
Change-Id: I52f4223030da5c93a26f984ff3f592bef2cfd657
  • Loading branch information
Hashcode committed Sep 25, 2012
1 parent 38e459e commit 2345d4c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions prebuilt/app/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@
# See the License for the specific language governing permissions and
# limitations under the License.

LOCAL_PATH:=\$(call my-dir)
LOCAL_PATH:=$(call my-dir)

include \$(CLEAR_VARS)
include $(CLEAR_VARS)

LOCAL_MODULE := FileManager
LOCAL_SRC_FILES := \$(LOCAL_MODULE).apk
LOCAL_SRC_FILES := $(LOCAL_MODULE).apk
LOCAL_MODULE_CLASS := APPS
LOCAL_MODULE_TAGS := optional
LOCAL_CERTIFICATE := platform
LOCAL_MODULE_SUFFIX := \$(COMMON_ANDROID_PACKAGE_SUFFIX)
include \$(BUILD_PREBUILT)
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
include $(BUILD_PREBUILT)

include \$(CLEAR_VARS)
include $(CLEAR_VARS)

LOCAL_MODULE := Term
LOCAL_SRC_FILES := \$(LOCAL_MODULE).apk
LOCAL_SRC_FILES := $(LOCAL_MODULE).apk
LOCAL_MODULE_CLASS := APPS
LOCAL_MODULE_TAGS := optional
LOCAL_CERTIFICATE := platform
LOCAL_MODULE_SUFFIX := \$(COMMON_ANDROID_PACKAGE_SUFFIX)
include \$(BUILD_PREBUILT)
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
include $(BUILD_PREBUILT)

0 comments on commit 2345d4c

Please sign in to comment.