diff options
author | Fathi Boudra <fathi.boudra@linaro.org> | 2014-05-03 15:42:46 +0300 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-05-04 17:14:11 +0200 |
commit | 447ef234d4e69f527e4c1c2bea6129b08af30010 (patch) | |
tree | f5b7f705f4c80f2158cfd87d6206f204fa41b97e /meta-oe/recipes-benchmark/libhugetlbfs/files/0001-replace-lib-lib64-hardcoded-values-by-LIBDIR32-LIBDI.patch | |
parent | 25ca3cf168103ca2591658ffa83946ebd24733b5 (diff) | |
download | meta-openembedded-447ef234d4e69f527e4c1c2bea6129b08af30010.tar.gz |
libhugetlbfs: update srcrev to 2.18 release
* Update recipe:
- update SRCREV to latest release, 2.18
- switch back to master branch
- increase verbosity (pass V=1 to EXTRA_OEMAKE) to make debugging easier
* Drop patches:
- fix-lib64-can-not-be-shiped-in-64bit-target.patch
replaced by LIBARGS definition. the build system allows to override libdir
using LIB32 and LIB64 variables
- 0001-install-perl-lib-to-directory-perl-instead-of-perl5.patch
replaced by a one-liner to fixup perl module directory hardcoded to perl5
* Refresh skip-checking-LIB32-and-LIB64-if-they-point-to-the-s.patch
- only disable the error to skip the check
* Add patches:
- 0001-aarch64-fix-cross-compilation.patch - submitted upstream
allow to override CC and use it for aarch64 case like the other arch
- 0001-aarch64-fix-page-size-not-properly-computed.patch - submitted upstream
fix typo on MB variable (MB -> $MB) and add the missing linker variants
(aarch64elfb, aarch64linux, aarch64linuxb)
- 0001-replace-lib-lib64-hardcoded-values-by-LIBDIR32-LIBDI.patch
submitted upstream. replace lib/lib64 hardcoded values by LIBDIR32 and
LIBDIR64 variables
* Remove patches that aren't applied in the recipe (they're all merged
upstream and available in 2.18 release):
- libhugetlbfs/files/aarch64-support.patch
- aarch64-unit-test-fixes.patch
- add-PROT-NONE-to-the-mprotest-test.patch
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-benchmark/libhugetlbfs/files/0001-replace-lib-lib64-hardcoded-values-by-LIBDIR32-LIBDI.patch')
-rw-r--r-- | meta-oe/recipes-benchmark/libhugetlbfs/files/0001-replace-lib-lib64-hardcoded-values-by-LIBDIR32-LIBDI.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/libhugetlbfs/files/0001-replace-lib-lib64-hardcoded-values-by-LIBDIR32-LIBDI.patch b/meta-oe/recipes-benchmark/libhugetlbfs/files/0001-replace-lib-lib64-hardcoded-values-by-LIBDIR32-LIBDI.patch new file mode 100644 index 0000000000..9e2a5e58df --- /dev/null +++ b/meta-oe/recipes-benchmark/libhugetlbfs/files/0001-replace-lib-lib64-hardcoded-values-by-LIBDIR32-LIBDI.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | Subject: [PATCH 1/1] Replace lib/lib64 hardcoded values by LIBDIR32/LIBDIR64 | ||
2 | variables | ||
3 | |||
4 | Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | --- | ||
8 | Makefile | 4 ++-- | ||
9 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
10 | |||
11 | diff --git a/Makefile b/Makefile | ||
12 | index 91502e1..682c0db 100644 | ||
13 | --- a/Makefile | ||
14 | +++ b/Makefile | ||
15 | @@ -181,9 +181,9 @@ BINDIR = $(PREFIX)/share/libhugetlbfs | ||
16 | EXEDIR = $(PREFIX)/bin | ||
17 | DOCDIR = $(PREFIX)/share/doc/libhugetlbfs | ||
18 | ifdef CC32 | ||
19 | -PMDIR = $(PREFIX)/lib/perl5/TLBC | ||
20 | +PMDIR = $(LIBDIR32)/perl5/TLBC | ||
21 | else | ||
22 | -PMDIR = $(PREFIX)/lib64/perl5/TLBC | ||
23 | +PMDIR = $(LIBDIR64)/perl5/TLBC | ||
24 | endif | ||
25 | MANDIR1 = $(PREFIX)/share/man/man1 | ||
26 | MANDIR3 = $(PREFIX)/share/man/man3 | ||
27 | -- | ||
28 | 1.9.2 | ||
29 | |||