summaryrefslogtreecommitdiff
path: root/scripts/Makefile.lib
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2016-05-07 14:46:16 (GMT)
committerBin Meng <bmeng.cn@gmail.com>2016-05-23 07:18:00 (GMT)
commit68af8d887c463c688f3f1dc02edf04cb58f8bf5d (patch)
tree23297e3edc750bfb4cce0f51b0235a4038e1c5e5 /scripts/Makefile.lib
parentce8dd77d996f8920b290d7070d4bfe744249a871 (diff)
downloadu-boot-68af8d887c463c688f3f1dc02edf04cb58f8bf5d.tar.xz
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 <bmeng.cn@gmail.com> Reviewed-by: Stefan Roese <sr@denx.de> Tested-by: Stefan Roese <sr@denx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'scripts/Makefile.lib')
-rw-r--r--scripts/Makefile.lib2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index ad1d9b5..4f882f1 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; \