From: Dylan Baker Date: Wed, 3 Jan 2018 20:33:55 +0000 (-0800) Subject: meson: define inc_gbm as empty if not otherwise assigned X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5fcadaec80c97a1df280b7bab01c271e323a468a;p=mesa.git 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 --- diff --git a/src/meson.build b/src/meson.build index 5fc14acb0c7..730b2ff6e41 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')