Browse Source

[Make] Fix Makefile.Host message when run with SGX_RUN=1

Remove leading tab to fix the following error:

> Scripts//Makefile.Host:16: *** recipe commences before first target. Stop.
Isaku Yamahata 4 years ago
parent
commit
e0dc66bcf6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Scripts/Makefile.Host

+ 2 - 2
Scripts/Makefile.Host

@@ -13,11 +13,11 @@ endif
 endif
 
 ifeq ($(SGX_RUN),1)
-	$(error "SGX_RUN has been removed. Always set SGX=1 if building for SGX and use the 'sgx-tokens' make target to build launch/EINIT tokens")
+$(error "SGX_RUN has been removed. Always set SGX=1 if building for SGX and use the 'sgx-tokens' make target to build launch/EINIT tokens")
 endif
 
 ifeq ($(SGX),1)
-	PAL_HOST := $(patsubst %-SGX,%,$(PAL_HOST))-SGX
+PAL_HOST := $(patsubst %-SGX,%,$(PAL_HOST))-SGX
 endif
 
 ifeq ($(findstring $(PAL_HOST),$(all_hosts)),)