OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.6 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../qemu/qemu-1.1.1-parallel-make.patch
  5. # Copyright (C) 2012 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. Description: Fix compiling with more than one make job
  17. Compiling virtfs-proxy-helper depends on then generated config-host.h
  18. Following error occurs without this patch
  19. --------------------------------------------------------------------------
  20. In file included from ./qemu-common.h:5:0,
  21. from fsdev/virtfs-proxy-helper.c:23:
  22. ./compiler.h:6:25: fatal error: config-host.h: No such file or directory
  23. --------------------------------------------------------------------------
  24. --- qemu-1.1.1/Makefile.orig 2012-07-22 22:21:26.953999658 +0200
  25. +++ qemu-1.1.1/Makefile 2012-07-22 22:24:13.562030679 +0200
  26. @@ -166,6 +166,7 @@
  27. fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/virtio-9p-marshal.o oslib-posix.o $(trace-obj-y)
  28. fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
  29. +fsdev/virtfs-proxy-helper.o: $(GENERATED_HEADERS)
  30. qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
  31. $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@")