2
1

gdisk-0.6.14-uuid.h.patch 512 B

12345678910111213141516171819202122
  1. [PATCH] Don't hardcode uuid.h location
  2. Breaks cross compilation.
  3. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
  4. ---
  5. guid.h | 2 +-
  6. 1 file changed, 1 insertion(+), 1 deletion(-)
  7. Index: gdisk-0.6.14/guid.h
  8. ===================================================================
  9. --- gdisk-0.6.14.orig/guid.h
  10. +++ gdisk-0.6.14/guid.h
  11. @@ -22,7 +22,7 @@
  12. #ifdef _WIN32
  13. typedef unsigned char my_uuid_t[16];
  14. #else
  15. -#include </usr/include/uuid/uuid.h>
  16. +#include <uuid/uuid.h>
  17. typedef uuid_t my_uuid_t;
  18. #endif