cm: Look at ro.compcache.default too
diff --git a/prebuilt/common/bin/handle_compcache b/prebuilt/common/bin/handle_compcache
index 52b84d9..527e6ec 100755
--- a/prebuilt/common/bin/handle_compcache
+++ b/prebuilt/common/bin/handle_compcache
@@ -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