Fixes the file not being cleaned with --disable-xorg, for such a distcheck not to fail.
Signed-off-by: Mihail Konev <[email protected]> --- v2: Reword. configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ac11e65728e8..3196e42df16a 100644 --- a/configure.ac +++ b/configure.ac @@ -2488,7 +2488,9 @@ AC_SUBST([libdir]) AC_SUBST([exec_prefix]) AC_SUBST([prefix]) -AC_CONFIG_COMMANDS([sdksyms], [touch hw/xfree86/sdksyms.dep]) +if test "x$XORG" = xyes; then + AC_CONFIG_COMMANDS([sdksyms], [touch hw/xfree86/sdksyms.dep]) +fi if test "x$CONFIG_HAL" = xno && test "x$CONFIG_UDEV" = xno; then AC_MSG_WARN([ -- 2.9.2 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: https://lists.x.org/mailman/listinfo/xorg-devel
