From 5fcadaec80c97a1df280b7bab01c271e323a468a Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 3 Jan 2018 12:33:55 -0800 Subject: [PATCH] meson: define inc_gbm as empty if not otherwise assigned Otherwise this could be undefined in the egl directory. Signed-off-by: Dylan Baker Acked-by: Eric Engestrom --- src/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/meson.build b/src/meson.build index 5fc14ac..730b2ff 100644 --- a/src/meson.build +++ b/src/meson.build @@ -67,6 +67,8 @@ subdir('loader') subdir('glx') if with_gbm subdir('gbm') +else + inc_gbm = [] endif if with_egl subdir('egl') -- 2.7.4