From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: shenglei.zhang@intel.com) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by groups.io with SMTP; Mon, 01 Jul 2019 00:09:35 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Jul 2019 00:09:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,437,1557212400"; d="scan'208";a="314790216" Received: from shenglei-dev.ccr.corp.intel.com ([10.239.158.52]) by orsmga004.jf.intel.com with ESMTP; 01 Jul 2019 00:09:34 -0700 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Bob Feng , Liming Gao Subject: [PATCH] Silicon/Tools: Replace white spaces with tabs in GNUmakefile Date: Mon, 1 Jul 2019 15:09:31 +0800 Message-Id: <20190701070931.12000-1-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 The tools can't be complied successfully because of the white spaces in GNUmakefile. So replace them with tabs. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- Silicon/Intel/Tools/GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Silicon/Intel/Tools/GNUmakefile b/Silicon/Intel/Tools/GNUmakefile index 20abf148b5..6910b6ad0f 100644 --- a/Silicon/Intel/Tools/GNUmakefile +++ b/Silicon/Intel/Tools/GNUmakefile @@ -18,11 +18,11 @@ $(APPLICATIONS): $(MAKEROOT)/bin .PHONY: subdirs $(SUBDIRS) subdirs: $(SUBDIRS) $(SUBDIRS): - $(MAKE) -C $@ + $(MAKE) -C $@ .PHONY: $(patsubst %,%-clean,$(sort $(SUBDIRS))) $(patsubst %,%-clean,$(sort $(SUBDIRS))): - -$(MAKE) -C $(@:-clean=) clean + -$(MAKE) -C $(@:-clean=) clean clean: $(patsubst %,%-clean,$(sort $(SUBDIRS))) -- 2.18.0.windows.1