build: Fix srcdir != builddir with wayland-client-protocol.h

In the gnome-ostree model builddir contains all generated files not in
git (unless the build system explicitly overrides that).  Here the
wayland-client-protocol.h was in $(builddir)/wayland, so we need to
find it using our already extant -I$(top_builddir)/gdk, rather than
relying on same-directory lookup.
This commit is contained in:
Colin Walters 2013-09-03 17:48:30 -04:00
parent 68f24e7993
commit 0697cbb88c

View File

@ -26,7 +26,7 @@
#include <stdint.h>
#include <wayland-client.h>
#include <wayland-cursor.h>
#include "gtk-shell-client-protocol.h"
#include <gdk/wayland/gtk-shell-client-protocol.h>
#include <glib.h>
#include <gdk/gdkkeys.h>