summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/openhpi/files/0001-ipmidirect-Replace-__STRING.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-daemons/openhpi/files/0001-ipmidirect-Replace-__STRING.patch')
-rw-r--r--meta-networking/recipes-daemons/openhpi/files/0001-ipmidirect-Replace-__STRING.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/openhpi/files/0001-ipmidirect-Replace-__STRING.patch b/meta-networking/recipes-daemons/openhpi/files/0001-ipmidirect-Replace-__STRING.patch
new file mode 100644
index 000000000..4d56f6535
--- /dev/null
+++ b/meta-networking/recipes-daemons/openhpi/files/0001-ipmidirect-Replace-__STRING.patch
@@ -0,0 +1,31 @@
1From be40b3f11460cf495bbbef45692e7763afda0c2b Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 14 Sep 2017 17:56:31 -0700
4Subject: [PATCH] ipmidirect: Replace __STRING
5
6__STRING is not universally available e.g.
7musl does not define it
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11Upstream-Status: Pending
12
13 plugins/ipmidirect/t/test.h | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/plugins/ipmidirect/t/test.h b/plugins/ipmidirect/t/test.h
17index 8d71381..978d5ff 100644
18--- a/plugins/ipmidirect/t/test.h
19+++ b/plugins/ipmidirect/t/test.h
20@@ -22,7 +22,7 @@ TestFunction( const char *str, const char *file, int line, bool expr )
21 }
22
23
24-#define Test(expr) TestFunction( __STRING(expr), __FILE__, __LINE__, expr )
25+#define Test(expr) TestFunction( #expr, __FILE__, __LINE__, expr )
26
27
28 static int
29--
302.14.1
31