diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2022-02-22 14:54:39 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-02-25 11:21:24 -0500 |
commit | 5d94cbd1dca78deff57b3ffc2a484cfb70579503 (patch) | |
tree | b87d455c7b6ceaeb9176b69dca51a1f378c9d077 /Makefile | |
parent | 90de95f7443cb06f014824976251f126ac6f71c0 (diff) | |
download | u-boot-5d94cbd1dca78deff57b3ffc2a484cfb70579503.zip u-boot-5d94cbd1dca78deff57b3ffc2a484cfb70579503.tar.gz u-boot-5d94cbd1dca78deff57b3ffc2a484cfb70579503.tar.bz2 |
scripts: Makefile.lib: generate dsdt_generated.c instead of dsdt.c
There is a conflict between the static file
lib/acpi/dsdt.c and the file dsdt.c generated
dynamicaly by scripts/Makefile.lib. When a
mrproper is done, the static file dsdt.c is
removed. If a build with acpi enabled is
launched after, the following error is raised:
CC lib/acpi/acpi_table.o
make[2]: *** No rule to make target 'lib/acpi/dsdt.asl', needed by 'lib/acpi/dsdt.c'. Stop.
scripts/Makefile.build:394: recipe for target 'lib/acpi' failed
To avoid such error, the generated file is named
dsdt_generated.c instead of dstdt.c.
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Tested-by: Heiko Thiery <heiko.thiery@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2227,7 +2227,8 @@ clean: $(clean-dirs) -o -name '*.asn1.[ch]' \ -o -name '*.symtypes' -o -name 'modules.order' \ -o -name modules.builtin -o -name '.tmp_*.o.*' \ - -o -name 'dsdt.aml' -o -name 'dsdt.asl.tmp' -o -name 'dsdt.c' \ + -o -name 'dsdt_generated.aml' -o -name 'dsdt_generated.asl.tmp' \ + -o -name 'dsdt_generated.c' \ -o -name '*.efi' -o -name '*.gcno' -o -name '*.so' \) \ -type f -print | xargs rm -f |