summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/acpid/acpid
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2016-05-04 11:20:15 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-11 10:33:38 +0100
commitdb36fc924666e1905bb76c2f86e1642a67564af5 (patch)
tree8e886a57d910ff8c7fddc629feb4dcac8945e8e6 /meta/recipes-bsp/acpid/acpid
parent06aa0d437148f31ee3d8e21b041467cadb0b298e (diff)
downloadpoky-db36fc924666e1905bb76c2f86e1642a67564af5.tar.gz
acpid: upgrade to 2.0.27
2.0.26 -> 2.0.27 Remove upstreamed patch: 0001-Fix-out-of-source-build.patch (From OE-Core rev: 59141d4ad815b5bcbb983e8121e4bcb34efb1174) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/acpid/acpid')
-rw-r--r--meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch b/meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch
deleted file mode 100644
index d1aa3aa173..0000000000
--- a/meta/recipes-bsp/acpid/acpid/0001-Fix-out-of-source-build.patch
+++ /dev/null
@@ -1,46 +0,0 @@
1From 5d32b65af750e2007730f3d55a552a186aed81a6 Mon Sep 17 00:00:00 2001
2From: "Maxin B. John" <maxin.john@intel.com>
3Date: Wed, 20 Jan 2016 14:08:29 +0200
4Subject: [PATCH] Fix out of source build
5
6Since the source directory contains another config.h, the build
7directory should be searched first.
8
9Upstream-Status: Submitted
10[https://sourceforge.net/p/acpid2/tickets/10/]
11
12Signed-off-by: Maxin B. John <maxin.john@intel.com>
13---
14 sock.c | 2 +-
15 ud_socket.c | 2 +-
16 2 files changed, 2 insertions(+), 2 deletions(-)
17
18diff --git a/sock.c b/sock.c
19index 644d460..9e04501 100644
20--- a/sock.c
21+++ b/sock.c
22@@ -21,7 +21,7 @@
23 */
24
25 #ifdef HAVE_CONFIG_H
26-#include "config.h"
27+#include <config.h>
28 #endif
29
30 #include <unistd.h>
31diff --git a/ud_socket.c b/ud_socket.c
32index 1790917..83b2aa9 100644
33--- a/ud_socket.c
34+++ b/ud_socket.c
35@@ -4,7 +4,7 @@
36 */
37
38 #ifdef HAVE_CONFIG_H
39-#include "config.h"
40+#include <config.h>
41 #endif
42
43 #include <stdio.h>
44--
452.4.0
46