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>
This commit is contained in:
parent
ce8dd77d99
commit
68af8d887c
|
@ -323,7 +323,7 @@ $(obj)/%.S: $(src)/%.ttf
|
||||||
|
|
||||||
# ACPI
|
# ACPI
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
quiet_cmd_acpi_c_asl= ASL $@
|
quiet_cmd_acpi_c_asl= ASL $<
|
||||||
cmd_acpi_c_asl= \
|
cmd_acpi_c_asl= \
|
||||||
$(CPP) -x assembler-with-cpp -P -o $<.tmp $<; \
|
$(CPP) -x assembler-with-cpp -P -o $<.tmp $<; \
|
||||||
iasl -p $< -tc -va $<.tmp; \
|
iasl -p $< -tc -va $<.tmp; \
|
||||||
|
|
Loading…
Reference in New Issue