From 3afbbb8068a3408acfcecd8ef730b2026e229d40 Mon Sep 17 00:00:00 2001 From: Prashanth Mundkur Date: Fri, 27 Feb 2009 11:53:47 -0800 Subject: [PATCH] [build] Make the xenclient-xen-clean target work. This removes files generated by the acpica/iasl compiler from the clean target. Also disable the download+install of the acpica package, which tries to write to /usr/bin. --- tools/firmware/hvmloader/acpi/Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tools/firmware/hvmloader/acpi/Makefile b/tools/firmware/hvmloader/acpi/Makefile index 292d0be..caa799e 100644 --- a/tools/firmware/hvmloader/acpi/Makefile +++ b/tools/firmware/hvmloader/acpi/Makefile @@ -67,10 +67,11 @@ iasl: @echo "If wget failed, please download and compile manually from" @echo "http://acpica.org/downloads/" @echo - wget $(IASL_URL) - tar xzf $(IASL_VER).tar.gz - make -C $(IASL_VER)/compiler - $(INSTALL_PROG) $(IASL_VER)/compiler/iasl /$(BINDIR)/iasl + @exit 1 +# wget $(IASL_URL) +# tar xzf $(IASL_VER).tar.gz +# make -C $(IASL_VER)/compiler +# $(INSTALL_PROG) $(IASL_VER)/compiler/iasl /$(BINDIR)/iasl %.o: %.c $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< @@ -79,6 +80,7 @@ acpi.a: $(OBJS) $(AR) rc $@ $(OBJS) clean: - rm -rf *.a *.o dsdt.c ssdt_pm.h ssdt_hp_6930p_elitebook.h ssdt_tpm.h $(IASL_VER) $(IASL_VER).tar.gz + rm -rf *.a *.o $(IASL_VER) $(IASL_VER).tar.gz +# rm -rf dsdt.c ssdt_pm.h ssdt_hp_6930p_elitebook.h ssdt_tpm.h install: all -- 2.39.5