debug_report: rename vk_lunarg_debug_report.h
diff --git a/include/vulkan/vk_layer.h b/include/vulkan/vk_layer.h
index 401ca866..50c574e 100644
--- a/include/vulkan/vk_layer.h
+++ b/include/vulkan/vk_layer.h
@@ -5,7 +5,7 @@
 #pragma once
 
 #include "vulkan/vulkan.h"
-#include "vulkan/vk_lunarg_debug_report.h"
+#include <vulkan/vk_lunarg_debug_report.h>
 #include "vulkan/vk_lunarg_debug_marker.h"
 #if defined(__GNUC__) && __GNUC__ >= 4
 #  define VK_LAYER_EXPORT __attribute__((visibility("default")))
diff --git a/tests/layer_validation_tests.cpp b/tests/layer_validation_tests.cpp
index dac9776..beed772 100644
--- a/tests/layer_validation_tests.cpp
+++ b/tests/layer_validation_tests.cpp
@@ -30,7 +30,7 @@
 
 
 #include <vulkan/vulkan.h>
-#include "vulkan/vk_lunarg_debug_report.h"
+#include <vulkan/vk_lunarg_debug_report.h>
 #include "test_common.h"
 #include "vkrenderframework.h"
 #include "vk_layer_config.h"
diff --git a/vulkan.py b/vulkan.py
index b725054..1da9804 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -1119,7 +1119,7 @@
 )
 lunarg_debug_report = Extension(
     name="VK_LUNARG_DEBUG_REPORT",
-    headers=["vk_lunarg_debug_report.h"],
+    headers=["vulkan/vk_lunarg_debug_report.h"],
     objects=[
         "VkDebugReportCallbackLUNARG",
     ],