Commit c7b336b0845eaa8f629bf24dbb0c666612a927ab

Edward Thomson 2015-10-22T10:29:51

xdiff: reference util.h in parent directory Although CMake will correctly configure include directories for us, some people may use their own build system, and we should reference `util.h` based on where it actually lives.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/xdiff/xdiff.h b/src/xdiff/xdiff.h
index db5d598..f08f72e 100644
--- a/src/xdiff/xdiff.h
+++ b/src/xdiff/xdiff.h
@@ -20,7 +20,7 @@
  *
  */
 
-#include "util.h"
+#include "../util.h"
 
 #if !defined(XDIFF_H)
 #define XDIFF_H