diff options
author | Ross Burton <ross.burton@intel.com> | 2014-07-15 17:18:36 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-16 10:31:17 +0100 |
commit | 03c6fd0caab0ea8dcc2e0c3ab827a287a4f36910 (patch) | |
tree | 5a67814c667fa822aa9231d9f84fb83a7acfcbf4 /meta/recipes-extended | |
parent | 68d1ee3182ca0d8b550f92e2f5bed0150b9d1328 (diff) | |
download | poky-03c6fd0caab0ea8dcc2e0c3ab827a287a4f36910.tar.gz |
ltp: use "foreign" automake strictness
ltp doesn't want GNU-levels of automake strictness so tell it to be "foreign".
(From OE-Core rev: 846bc50fde11bbb36c8eb5b2e3ae6bb644c037f3)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/ltp/ltp/automake-foreign.patch | 20 | ||||
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20140422.bb | 1 |
2 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-extended/ltp/ltp/automake-foreign.patch b/meta/recipes-extended/ltp/ltp/automake-foreign.patch new file mode 100644 index 0000000000..c3dd891395 --- /dev/null +++ b/meta/recipes-extended/ltp/ltp/automake-foreign.patch | |||
@@ -0,0 +1,20 @@ | |||
1 | Use foreign strictness to avoid automake errors. | ||
2 | |||
3 | Upstream-Status: Submitted (https://github.com/linux-test-project/ltp/issues/16) | ||
4 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
5 | |||
6 | diff --git a/configure.ac b/configure.ac | ||
7 | index 9f397e7..fc57957 100644 | ||
8 | --- a/configure.ac | ||
9 | +++ b/configure.ac | ||
10 | @@ -4 +4 @@ | ||
11 | -AM_INIT_AUTOMAKE | ||
12 | +AM_INIT_AUTOMAKE([foreign]) | ||
13 | --- a/utils/ffsb-6.0-rc2/configure.in | ||
14 | +++ b/utils/ffsb-6.0-rc2/configure.in | ||
15 | @@ -2,2 +2,3 @@ dnl Process this file with autoconf to produce a configure script. | ||
16 | -AC_INIT(main.c) | ||
17 | -AM_INIT_AUTOMAKE(ffsb, 6.0-RC2) | ||
18 | +AC_INIT([ffsb], [6.0-RC2]) | ||
19 | +AC_CONFIG_SRCDIR([main.c]) | ||
20 | +AM_INIT_AUTOMAKE([foreign]) | ||
diff --git a/meta/recipes-extended/ltp/ltp_20140422.bb b/meta/recipes-extended/ltp/ltp_20140422.bb index 995d6170ee..30761fd920 100644 --- a/meta/recipes-extended/ltp/ltp_20140422.bb +++ b/meta/recipes-extended/ltp/ltp_20140422.bb | |||
@@ -25,6 +25,7 @@ SRCREV = "f4c3bfe1eab51eb72caeb0f3336d2790c9a8bd1b" | |||
25 | SRC_URI = "git://github.com/linux-test-project/ltp.git \ | 25 | SRC_URI = "git://github.com/linux-test-project/ltp.git \ |
26 | file://0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch \ | 26 | file://0001-Rename-runtests_noltp.sh-script-so-have-unique-name.patch \ |
27 | file://ltp-Do-not-link-against-libfl.patch \ | 27 | file://ltp-Do-not-link-against-libfl.patch \ |
28 | file://automake-foreign.patch \ | ||
28 | " | 29 | " |
29 | 30 | ||
30 | S = "${WORKDIR}/git" | 31 | S = "${WORKDIR}/git" |