Browse Source

Use root root for chown

* This is what it's supposed to be

Signed-off-by: Paul Keith <[email protected]>
Paul Keith 8 years ago
parent
commit
d82010a3ea
1 changed files with 2 additions and 2 deletions
  1. 2 2
      build/meta/com/google/android/update-binary

+ 2 - 2
build/meta/com/google/android/update-binary

@@ -67,7 +67,7 @@ for dirs in $DIRS; do
   set_perm 0755 $dir
   for d in `exec_util "find ./$dir -type d"`; do
     set_perm 0755 $d
-    set_owner system system $d
+    set_owner root root $d
   done
   for f in `exec_util "find ./$dir -type f"`; do
     type=$(echo "$f" | sed 's/.*\.//')
@@ -76,7 +76,7 @@ for dirs in $DIRS; do
     else
       set_perm 0644 $f
     fi
-    set_owner system system $f
+    set_owner root root $f
     set_con system_file $f
   done
 done