Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3526e1e authored by SzuWei Lin's avatar SzuWei Lin
Browse files

Fix build error when (ADB|FASTBOOT)_VERSION has space

Test: make, and build pass
Change-Id: I8fc608a5b8bccb43b8af72978ce16a945147f62d
parent 01e7990a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ ADB_COMMON_CFLAGS := \
    -Wno-unused-parameter \
    -Wno-missing-field-initializers \
    -Wvla \
    -DADB_VERSION=\"$(tool_version)\" \
    -DADB_VERSION="\"$(tool_version)\""

ADB_COMMON_posix_CFLAGS := \
    -Wexit-time-destructors \
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ include $(LOCAL_PATH)/../platform_tools_tool_version.mk

include $(CLEAR_VARS)

LOCAL_CFLAGS += -DFASTBOOT_VERSION=\"$(tool_version)\"
LOCAL_CFLAGS += -DFASTBOOT_VERSION="\"$(tool_version)\""

LOCAL_C_INCLUDES := \
  $(LOCAL_PATH)/../adb \