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
This commit is contained in:
+1
-1
@@ -35,7 +35,7 @@ endif
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
TWRES_PATH := "/twres/"
|
||||
TWRES_PATH := /twres/
|
||||
TWHTCD_PATH := $(TWRES_PATH)htcd/
|
||||
|
||||
TARGET_RECOVERY_GUI := true
|
||||
|
||||
Reference in New Issue
Block a user