]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
acpi: Change build log for ASL files
authorBin Meng <bmeng.cn@gmail.com>
Sat, 7 May 2016 14:46:16 +0000 (07:46 -0700)
committerBin Meng <bmeng.cn@gmail.com>
Mon, 23 May 2016 07:18:00 +0000 (15:18 +0800)
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>
scripts/Makefile.lib

index ad1d9b5d7dd25fd5a4357c93bc7c4818ba8c109d..4f882f1006245c810bfdb45c046e1ee330edd791 100644 (file)
@@ -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; \