Autotools already copies the files appropriately, and using top_srcdir causes the files to be generated in the source tree rather than the build one.
Signed-off-by: Emil Velikov <[email protected]> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ef56272..f8ce348 100644 --- a/configure.ac +++ b/configure.ac @@ -162,7 +162,7 @@ fi AM_CONDITIONAL(USE_WAYLAND, test "$USE_WAYLAND" = "yes") m4_ifdef([WAYLAND_SCANNER_RULES], - [WAYLAND_SCANNER_RULES(['$(top_srcdir)/src/wayland'])], + [WAYLAND_SCANNER_RULES(['$(top_builddir)/src/wayland'])], [wayland_scanner_rules=""; AC_SUBST(wayland_scanner_rules)]) AC_OUTPUT([ -- 2.1.0 _______________________________________________ Libva mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libva
