summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/apr/apr/0002-apr-Remove-workdir-path-references-from-installed-ap.patch
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2018-02-02 04:06:11 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-02-06 11:06:29 +0000
commit561d0ce5031429e78220f1d4e206829ad3a6cd1b (patch)
tree6ec1ddfd739dce56f3cd275b4f285b78061c5e20 /meta/recipes-support/apr/apr/0002-apr-Remove-workdir-path-references-from-installed-ap.patch
parent659d10a64cab58ffcf24522d17960adc66f7158d (diff)
downloadpoky-561d0ce5031429e78220f1d4e206829ad3a6cd1b.tar.gz
apr: 1.6.2 -> 1.6.3
1. Improve inappropriate patches: - Drop inappropriate configure_fixes.patch Use setting variable ac_cv_file__dev_zero and ac_cv_sizeof_struct_iovec to replace - Drop cleanup.patch Aassign variable libtool at ./buildconf executing and use 0001-build-buildcheck.sh-improve-libtool-detection.patch to replace. Submitted it to upstream. - Rename configfix.patch to 0002-apr-Remove-workdir-path-references-from-installed-ap.patch Add its original comments and author, explain why it is inappropriate - Drop upgrade-and-fix-1.5.1.patch Use 0003-Makefile.in-configure.in-support-cross-compiling.patch to replace. And submitted it to upstream. 2. Fix build path issue to improve reproducibility (From OE-Core rev: 29c4b19e640b544c9c351aec4292a3f65b619998) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/apr/apr/0002-apr-Remove-workdir-path-references-from-installed-ap.patch')
-rw-r--r--meta/recipes-support/apr/apr/0002-apr-Remove-workdir-path-references-from-installed-ap.patch74
1 files changed, 74 insertions, 0 deletions
diff --git a/meta/recipes-support/apr/apr/0002-apr-Remove-workdir-path-references-from-installed-ap.patch b/meta/recipes-support/apr/apr/0002-apr-Remove-workdir-path-references-from-installed-ap.patch
new file mode 100644
index 0000000000..72e706f966
--- /dev/null
+++ b/meta/recipes-support/apr/apr/0002-apr-Remove-workdir-path-references-from-installed-ap.patch
@@ -0,0 +1,74 @@
1From 5925b20da8bbc34d9bf5a5dca123ef38864d43c6 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Tue, 30 Jan 2018 09:39:06 +0800
4Subject: [PATCH 2/7] apr: Remove workdir path references from installed apr
5 files
6
7Upstream-Status: Inappropriate [configuration]
8
9Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10
11The generated `apr-1-config' is used by other recipes at build time or
12packages at target run time, the workdir path caused confusion.
13
14Rebase to 1.6.3
15
16Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
17---
18 apr-config.in | 26 ++------------------------
19 1 file changed, 2 insertions(+), 24 deletions(-)
20
21diff --git a/apr-config.in b/apr-config.in
22index 84b4073..bbbf651 100644
23--- a/apr-config.in
24+++ b/apr-config.in
25@@ -152,14 +152,7 @@ while test $# -gt 0; do
26 flags="$flags $LDFLAGS"
27 ;;
28 --includes)
29- if test "$location" = "installed"; then
30 flags="$flags -I$includedir $EXTRA_INCLUDES"
31- elif test "$location" = "source"; then
32- flags="$flags -I$APR_SOURCE_DIR/include $EXTRA_INCLUDES"
33- else
34- # this is for VPATH builds
35- flags="$flags -I$APR_BUILD_DIR/include -I$APR_SOURCE_DIR/include $EXTRA_INCLUDES"
36- fi
37 ;;
38 --srcdir)
39 echo $APR_SOURCE_DIR
40@@ -181,29 +174,14 @@ while test $# -gt 0; do
41 exit 0
42 ;;
43 --link-ld)
44- if test "$location" = "installed"; then
45- ### avoid using -L if libdir is a "standard" location like /usr/lib
46- flags="$flags -L$libdir -l${APR_LIBNAME}"
47- else
48- ### this surely can't work since the library is in .libs?
49- flags="$flags -L$APR_BUILD_DIR -l${APR_LIBNAME}"
50- fi
51+ flags="$flags -l${APR_LIBNAME}"
52 ;;
53 --link-libtool)
54 # If the LA_FILE exists where we think it should be, use it. If we're
55 # installed and the LA_FILE does not exist, assume to use -L/-l
56 # (the LA_FILE may not have been installed). If we're building ourselves,
57 # we'll assume that at some point the .la file be created.
58- if test -f "$LA_FILE"; then
59- flags="$flags $LA_FILE"
60- elif test "$location" = "installed"; then
61- ### avoid using -L if libdir is a "standard" location like /usr/lib
62- # Since the user is specifying they are linking with libtool, we
63- # *know* that -R will be recognized by libtool.
64- flags="$flags -L$libdir -R$libdir -l${APR_LIBNAME}"
65- else
66- flags="$flags $LA_FILE"
67- fi
68+ flags="$flags -l${APR_LIBNAME}"
69 ;;
70 --shlib-path-var)
71 echo "$SHLIBPATH_VAR"
72--
731.8.3.1
74