From 9b4033fc81b5c4568f17090e1f48f0df15af64fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Fri, 2 Feb 2018 08:23:42 +0800 Subject: [PATCH] Fix broken 'make distclean' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is an error below when running 'make distclean': Makefile:496: ../drm/.deps/va_drm_utils.Plo: No such file or directory make[2]: *** No rule to make target '../drm/.deps/va_drm_utils.Plo'. Stop. The regression is caused by f17486f which added subdir-objects to AM_INIT_AUTOMAKE. This patch comes from https://github.com/intel/libva/pull/172#issuecomment-362182959 Signed-off-by: Víctor Manuel Jáquez Leal Signed-off-by: Xiang, Haihao --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9738ff955..d33bdb487 100644 --- a/configure.ac +++ b/configure.ac @@ -90,7 +90,7 @@ AC_INIT([libva], AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([dist-bzip2 subdir-objects -Wno-portability]) +AM_INIT_AUTOMAKE([dist-bzip2 -Wno-portability]) AC_CONFIG_HEADERS([config.h]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])