From 07713fe6b147bcff1be4e9c15c96f59a105173be Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Mon, 12 Dec 2016 19:34:58 +0000 Subject: [PATCH] chore: remove backslash-escaping in Makefile errors & warnings (#972) They're unnecessary, and actually cause the backslash to get printed. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0a14f8f6..75f21354 100644 --- a/Makefile +++ b/Makefile @@ -66,16 +66,16 @@ else endif ifndef HOST_PLATFORM -$(error We couldn\'t detect your host platform) +$(error We couldn't detect your host platform) endif ifndef HOST_ARCH -$(error We couldn\'t detect your host architecture) +$(error We couldn't detect your host architecture) endif TARGET_PLATFORM = $(HOST_PLATFORM) ifneq ($(TARGET_PLATFORM),$(HOST_PLATFORM)) -$(error We don\'t support cross-platform builds yet) +$(error We don't support cross-platform builds yet) endif # Default to host architecture. You can override by doing: