Skip to content

Commit

Permalink
Fix broken 'make distclean'
Browse files Browse the repository at this point in the history
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
#172 (comment)

Signed-off-by: Víctor Manuel Jáquez Leal <[email protected]>
Signed-off-by: Xiang, Haihao <[email protected]>
  • Loading branch information
ceyusa authored and xhaihao committed Feb 2, 2018
1 parent 2e41bfd commit 9b4033f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])])
Expand Down

0 comments on commit 9b4033f

Please sign in to comment.