From 1777cdc93c69db19785e17be142b1398a826516f Mon Sep 17 00:00:00 2001 From: Matt Mower Date: Sat, 26 Sep 2015 15:56:56 -0500 Subject: Remove unnecessary quoting from twres path The C flag defines already use -DVAR=\"..\", so stripping these extra quotes should not affect those defines. The makefile does not need the quoting at all. Makefile example output... before: mkdir -p (omitted)/recovery/root"/twres/" after: mkdir -p (omitted)/recovery/root/twres/ Change-Id: I8f557662eb18b5ea40b63bc055d12be4440251e6 --- Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.mk b/Android.mk index 6d9959c2d..e0f784868 100644 --- a/Android.mk +++ b/Android.mk @@ -35,7 +35,7 @@ endif include $(CLEAR_VARS) -TWRES_PATH := "/twres/" +TWRES_PATH := /twres/ TWHTCD_PATH := $(TWRES_PATH)htcd/ TARGET_RECOVERY_GUI := true -- cgit v1.2.3