]> xenbits.xensource.com Git - xenclient/xen.git/commitdiff
[build] Make the xenclient-xen-clean target work.
authorPrashanth Mundkur <prashanth.mundkur@citrix.com>
Fri, 27 Feb 2009 19:53:47 +0000 (11:53 -0800)
committerPrashanth Mundkur <prashanth.mundkur@citrix.com>
Fri, 27 Feb 2009 19:53:47 +0000 (11:53 -0800)
  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

index 292d0be82e2577a4c89b0581f5d75fe7ac53ce9c..caa799eb02f1b694a56e05393c4c1b2eae50dee4 100644 (file)
@@ -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