summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-01-03 12:33:55 -0800
committerDylan Baker <dylan@pnwbakers.com>2018-01-11 15:40:02 -0800
commit5fcadaec80c97a1df280b7bab01c271e323a468a (patch)
treedab02b2920699c9551660ee6c5020e521bb597d9
parenta0a764cde5a0f469a1d3f04babb84268c26cf70c (diff)
meson: define inc_gbm as empty if not otherwise assigned
Otherwise this could be undefined in the egl directory. Signed-off-by: Dylan Baker <dylan.c.baker@intel.com> Acked-by: Eric Engestrom <eric.engestrom@imgtec.com>
-rw-r--r--src/meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/meson.build b/src/meson.build
index 5fc14acb0c..730b2ff6e4 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')