From 35e356f625d254f44c14f720c0eb9216297d35c2 Mon Sep 17 00:00:00 2001 From: Vasily Khoruzhick Date: Mon, 12 Aug 2013 11:45:17 +0300 Subject: [PATCH] build: add subdir-objects option to make automake happy Without subdir-object automake throws warnings like this one: Makefile.am:x: warning: source file 'drivers/aes2550.c' is in a subdirectory, Makefile.am:x: but option 'subdir-objects' is disabled --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d9faeb0..34f2eb1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_INIT([libfprint], [0.5.1]) -AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz check-news]) +AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz check-news subdir-objects]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([libfprint/core.c]) AC_CONFIG_HEADERS([config.h])