From f4e690285022ff80381d6e371d2e7747b6894fcd Mon Sep 17 00:00:00 2001
From: Nick Kralevich <nnk@google.com>
Date: Mon, 9 Jun 2014 20:35:51 -0700
Subject: [PATCH] recovery: don't use single quote

single quotes make the m4 parser think it's at the end of
a block, and generates the following compile time warning:

  external/sepolicy/recovery.te:9:WARNING 'unrecognized character' at token ''' on line 7720:

Change-Id: I2502f16f0d9ec7528ec0fc2ee65ad65635d0101b
---
 recovery.te | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recovery.te b/recovery.te
index 479f26031..595876119 100644
--- a/recovery.te
+++ b/recovery.te
@@ -59,7 +59,7 @@ recovery_only(`
 
   wakelock_use(recovery)
 
-  # This line seems suspect, as it shouldn't really need to
+  # This line seems suspect, as it should not really need to
   # set scheduling parameters for a kernel domain task.
   allow recovery kernel:process setsched;
 ')
-- 
GitLab