diff options
author | Dylan Baker <[email protected]> | 2017-10-20 17:49:42 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-11-02 11:39:45 -0700 |
commit | a29869e8720b385d3692f6a74de2921412b2c8c1 (patch) | |
tree | 5e9dab02c13d28896ee151572d6b074ddb38295a /src/egl | |
parent | 10d869535cc704c6f787f6759951bb5c87969b29 (diff) |
gbm: Don't traverse backwards for includes
This is just a bad idea and should be avoided. Instead, make the #include
flat and fix the build systems to pass the proper -I flags
v2: - add an inc_wayland_drm instead passing a path to
include_directories (Emil)
- update commit message (Emil)
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Daniel Stone <[email protected]> (v1)
Reviewed-by: Eric Engestrom <[email protected]> (v1)
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/wayland/wayland-drm/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/egl/wayland/wayland-drm/meson.build b/src/egl/wayland/wayland-drm/meson.build index 12b49ca4f06..17ac2ddf74e 100644 --- a/src/egl/wayland/wayland-drm/meson.build +++ b/src/egl/wayland/wayland-drm/meson.build @@ -18,6 +18,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +inc_wayland_drm = include_directories('.') + wayland_drm_protocol_c = custom_target( 'wayland-drm-protocol.c', input : 'wayland-drm.xml', |