libasplib: add url to gcc bug report
[buildroot-gz.git] / package / hplip / 0002-configure.in-fix-AM_INIT_AUTOMAKE-call.patch
blob8147490174651f0d4c9eed30a161a6fd76fb9d2d
1 From a2de7e834417de68db10dc6f09d5810b06e6cbc8 Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Thu, 21 Jan 2016 23:54:50 +0100
4 Subject: [PATCH] configure.in: fix AM_INIT_AUTOMAKE call
6 Uncomment the appropriate call to AM_INIT_AUTOMAKE so that the
7 "foreign" option is passed, which avoids the need for creating various
8 unneeded files when autoreconfiguring.
10 Add the subdir-objects options since the main Makefile.am references
11 files in subdirectories. This allows to silence a huge amount of
12 warning when autoreconfiguring.
14 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 ---
16 configure.in | 3 +--
17 1 file changed, 1 insertion(+), 2 deletions(-)
19 diff --git a/configure.in b/configure.in
20 index 8b06428..680cad5 100755
21 --- a/configure.in
22 +++ b/configure.in
23 @@ -27,8 +27,7 @@
25 #AC_PREREQ(2.59)
26 AC_INIT([HP Linux Imaging and Printing], [3.16.11], [3.16.11], [hplip])
27 -#AM_INIT_AUTOMAKE([1.9 foreign])
28 -AM_INIT_AUTOMAKE
29 +AM_INIT_AUTOMAKE([1.9 foreign subdir-objects])
30 AC_DISABLE_STATIC
32 # Checks for programs.
33 --
34 2.6.4