Merge "cm: Look at ro.compcache.default too" into froyo

This commit is contained in:
Steve Kondik 2010-08-20 17:51:03 +00:00 committed by Gerrit Code Review
commit a0d85e2179

View File

@ -4,7 +4,12 @@
# Decides whether or not Compcache is enabled
#
PROP=$(cat /data/property/persist.service.compcache)
if [ -e /data/property/persist.service.compcache ];
then
PROP=`getprop persist.service.compcache`
else
PROP=`getprop ro.compcache.default`
fi
if [ $PROP == 1 ]
then