Commit 68af8d887c463c688f3f1dc02edf04cb58f8bf5d

Authored by Bin Meng
1 parent ce8dd77d99

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

scripts/Makefile.lib
... ... @@ -323,7 +323,7 @@
323 323  
324 324 # ACPI
325 325 # ---------------------------------------------------------------------------
326   -quiet_cmd_acpi_c_asl= ASL $@
  326 +quiet_cmd_acpi_c_asl= ASL $<
327 327 cmd_acpi_c_asl= \
328 328 $(CPP) -x assembler-with-cpp -P -o $<.tmp $<; \
329 329 iasl -p $< -tc -va $<.tmp; \