summaryrefslogtreecommitdiffstats
path: root/patches/fcgi-2.4.0/prepare-for-new-autotools.diff
blob: 183898a4646d50a7d1c21cdbd5274af525c334ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Subject: prepare for new autotools 
From: Michael Olbrich <m.olbrich@pengutronix.de>

we need AM_INIT_AUTOMAKE([foreign]) or automake fails with missing files

Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>

---
 configure.in |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: b/configure.in
===================================================================
--- a/configure.in
+++ b/configure.in
@@ -4,8 +4,8 @@ dnl     This file is an input file used 
 dnl     generate the file "configure", which is run during the build
 dnl     to configure the system for the local environment.
 
-AC_INIT
-AM_INIT_AUTOMAKE(fcgi, 2.4.0)
+AC_INIT([fcgi],[2.4.0],[])
+AM_INIT_AUTOMAKE([foreign])
 
 AM_CONFIG_HEADER(fcgi_config.h)