summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/dbus/dbus-1.6.10/tmpdir.patch
diff options
context:
space:
mode:
authorCristian Iorga <cristian.iorga@intel.com>2013-07-11 15:41:43 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-13 18:23:37 +0100
commita6c5549ac3907839da0115d1de899c7a943785fe (patch)
treec04284aa4474c5e9de3a5d5407dd0e47bf91ba5a /meta/recipes-core/dbus/dbus-1.6.10/tmpdir.patch
parent0ef252e7de86d1fa8c5985234381f1bcd62961ff (diff)
downloadpoky-a6c5549ac3907839da0115d1de899c7a943785fe.tar.gz
dbus: upgrade to 1.6.10
dbus-ptest also upgraded to 1.6.10 systemd-address.patch removed; included in upstream. (From OE-Core rev: e516f18d663447954082b5d2df6c1033cb9b4e65) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/dbus/dbus-1.6.10/tmpdir.patch')
-rw-r--r--meta/recipes-core/dbus/dbus-1.6.10/tmpdir.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-core/dbus/dbus-1.6.10/tmpdir.patch b/meta/recipes-core/dbus/dbus-1.6.10/tmpdir.patch
new file mode 100644
index 0000000000..bf086e1788
--- /dev/null
+++ b/meta/recipes-core/dbus/dbus-1.6.10/tmpdir.patch
@@ -0,0 +1,44 @@
1From 5105fedd7fa13dadd2d0d864fb77873b83b79a4b Mon Sep 17 00:00:00 2001
2From: Koen Kooi <koen@dominion.thruhere.net>
3Date: Thu, 23 Jun 2011 13:52:09 +0200
4Subject: [PATCH] buildsys: hardcode socketdir to /tmp
5
6the TMPDIR env var isn't always pointing to the right target path
7
8Upstream-Status: Inappropriate [embedded]
9
10Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
11
12Original comment:
13
14 avoid to check tmp dir at build time. instead uses hard coded /tmp here
15 comment added by Kevin Tian <kevin.tian@intel.com>
16---
17 configure.ac | 11 +----------
18 1 files changed, 1 insertions(+), 10 deletions(-)
19
20diff --git a/configure.ac b/configure.ac
21index 408054b..6d26180 100644
22--- a/configure.ac
23+++ b/configure.ac
24@@ -1483,16 +1483,7 @@ AC_SUBST(TEST_LAUNCH_HELPER_BINARY)
25 AC_DEFINE_UNQUOTED(DBUS_TEST_LAUNCH_HELPER_BINARY, "$TEST_LAUNCH_HELPER_BINARY",
26 [Full path to the launch helper test program in the builddir])
27
28-#### Find socket directories
29-if ! test -z "$TMPDIR" ; then
30- DEFAULT_SOCKET_DIR=$TMPDIR
31-elif ! test -z "$TEMP" ; then
32- DEFAULT_SOCKET_DIR=$TEMP
33-elif ! test -z "$TMP" ; then
34- DEFAULT_SOCKET_DIR=$TMP
35-else
36- DEFAULT_SOCKET_DIR=/tmp
37-fi
38+DEFAULT_SOCKET_DIR=/tmp
39
40 DEFAULT_SOCKET_DIR=`echo $DEFAULT_SOCKET_DIR | sed 's/+/%2B/g'`
41
42--
431.6.6.1
44