Files
poky/meta/recipes-extended/which/which-2.18/automake-foreign.patch
Jackie Huang 70ad0500e7 which-2.18: Use foreign strictness to avoid automake errors
Fixed:
Makefile.am: error: required file './ChangeLog' not found

(From OE-Core rev: c84bfa0f519e0bb74aed833a6318c21d91fce377)

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-10-30 13:37:41 +00:00

29 lines
679 B
Diff

Subject: [PATCH] automake foreign strictness
Use foreign strictness to avoid automake errors.
Upstream-Status: Inappropriate [upstream no longer active]
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
configure.ac | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index b30b6f5..bd3222c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(which.c)
-AM_INIT_AUTOMAKE(which, 2.18)
+AC_INIT([which],[2.18])
+AC_CONFIG_SRCDIR(which.c)
+AM_INIT_AUTOMAKE([foreign])
AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE
--
1.7.1