From: Bin Meng Date: Sat, 7 May 2016 14:46:16 +0000 (-0700) Subject: acpi: Change build log for ASL files X-Git-Tag: v2025.01-rc5-pxa1908~9432^2~68 X-Git-Url: http://git.dujemihanovic.xyz/%22http:/www.sics.se/static/git-favicon.png?a=commitdiff_plain;h=68af8d887c463c688f3f1dc02edf04cb58f8bf5d;p=u-boot.git acpi: Change build log for ASL files Currently when compiling U-Boot with ASL file, the build log says: ASL board/intel/bayleybay/dsdt.c This looks odd as ASL compiler's input is ASL file, not C file. Change the make rule to use $< instead. Signed-off-by: Bin Meng Reviewed-by: Stefan Roese Tested-by: Stefan Roese Reviewed-by: Simon Glass --- diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index ad1d9b5d7d..4f882f1006 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -323,7 +323,7 @@ $(obj)/%.S: $(src)/%.ttf # ACPI # --------------------------------------------------------------------------- -quiet_cmd_acpi_c_asl= ASL $@ +quiet_cmd_acpi_c_asl= ASL $< cmd_acpi_c_asl= \ $(CPP) -x assembler-with-cpp -P -o $<.tmp $<; \ iasl -p $< -tc -va $<.tmp; \