diff options
author | Paolo Bonzini | 2022-05-27 17:35:42 +0200 |
---|---|---|
committer | Alex Bennée | 2022-06-01 16:47:43 +0200 |
commit | ea857a3b7976010a7fe7b59a89941964028f502a (patch) | |
tree | 4935fc15011616b3f4c1cd57749ba4e13dea3dcd /pc-bios | |
parent | tests/docker: update debian-amd64 with lcitool (diff) | |
download | qemu-ea857a3b7976010a7fe7b59a89941964028f502a.tar.gz qemu-ea857a3b7976010a7fe7b59a89941964028f502a.tar.xz qemu-ea857a3b7976010a7fe7b59a89941964028f502a.zip |
configure: do not define or use the CPP variable
Just hardcode $(CC) -E, it should be enough.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220517092616.1272238-2-pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20220527153603.887929-13-alex.bennee@linaro.org>
Diffstat (limited to 'pc-bios')
-rw-r--r-- | pc-bios/optionrom/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pc-bios/optionrom/Makefile b/pc-bios/optionrom/Makefile index 2494ad9c25..17ccc76241 100644 --- a/pc-bios/optionrom/Makefile +++ b/pc-bios/optionrom/Makefile @@ -50,7 +50,7 @@ override LDFLAGS = -m $(LD_I386_EMULATION) -T $(SRC_DIR)/flat.lds pvh.img: pvh.o pvh_main.o %.o: %.S - $(call quiet-command,$(CPP) $(CPPFLAGS) -c -o - $< | $(AS) $(ASFLAGS) -o $@,"AS","$@") + $(call quiet-command,$(CC) $(CPPFLAGS) -E -o - $< | $(AS) $(ASFLAGS) -o $@,"AS","$@") %.o: %.c $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@,"CC","$@") |