瀏覽代碼

[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 5 年之前
父節點
當前提交
e0dc66bcf6
共有 1 個文件被更改,包括 2 次插入2 次删除
  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)),)