summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-networking/recipes-support/openipmi/files/fix-symlink-install-error-in-cmdlang.patch10
-rw-r--r--meta-networking/recipes-support/openipmi/files/include_sys_types.patch8
2 files changed, 9 insertions, 9 deletions
diff --git a/meta-networking/recipes-support/openipmi/files/fix-symlink-install-error-in-cmdlang.patch b/meta-networking/recipes-support/openipmi/files/fix-symlink-install-error-in-cmdlang.patch
index 9a568b2b22..449142fcfa 100644
--- a/meta-networking/recipes-support/openipmi/files/fix-symlink-install-error-in-cmdlang.patch
+++ b/meta-networking/recipes-support/openipmi/files/fix-symlink-install-error-in-cmdlang.patch
@@ -8,11 +8,11 @@ Date: Thu Jun 7 16:00:13 2012 -0400
8 8
9 Signed-off-by: Aws Ismail <aws.ismail@windriver.com> 9 Signed-off-by: Aws Ismail <aws.ismail@windriver.com>
10 10
11diff --git a/cmdlang/Makefile.am b/cmdlang/Makefile.am 11Index: OpenIPMI-2.0.24/cmdlang/Makefile.am
12index 92d6e83..f6039f9 100644 12===================================================================
13--- a/cmdlang/Makefile.am 13--- OpenIPMI-2.0.24.orig/cmdlang/Makefile.am
14+++ b/cmdlang/Makefile.am 14+++ OpenIPMI-2.0.24/cmdlang/Makefile.am
15@@ -36,6 +36,7 @@ CLEANFILES = libOpenIPMIcmdlang.map 15@@ -35,6 +35,7 @@ openipmish_LDADD = libOpenIPMIcmdlang.l
16 # compatability. 16 # compatability.
17 install-data-local: 17 install-data-local:
18 rm -f $(DESTDIR)$(bindir)/ipmish 18 rm -f $(DESTDIR)$(bindir)/ipmish
diff --git a/meta-networking/recipes-support/openipmi/files/include_sys_types.patch b/meta-networking/recipes-support/openipmi/files/include_sys_types.patch
index 58ec5d8834..082511a67b 100644
--- a/meta-networking/recipes-support/openipmi/files/include_sys_types.patch
+++ b/meta-networking/recipes-support/openipmi/files/include_sys_types.patch
@@ -3,10 +3,10 @@ include sys/types.h for u_int32_t
3ui.c:340:5: error: unknown type name 'u_int32_t'; did you mean 'uint32_t'? 3ui.c:340:5: error: unknown type name 'u_int32_t'; did you mean 'uint32_t'?
4 u_int32_t addr; 4 u_int32_t addr;
5 ^~~~~~~~~ 5 ^~~~~~~~~
6Index: OpenIPMI-2.0.22/ui/ui.c 6Index: OpenIPMI-2.0.24/ui/ui.c
7=================================================================== 7===================================================================
8--- OpenIPMI-2.0.22.orig/ui/ui.c 8--- OpenIPMI-2.0.24.orig/ui/ui.c
9+++ OpenIPMI-2.0.22/ui/ui.c 9+++ OpenIPMI-2.0.24/ui/ui.c
10@@ -42,6 +42,7 @@ 10@@ -42,6 +42,7 @@
11 #include <fcntl.h> 11 #include <fcntl.h>
12 #include <time.h> 12 #include <time.h>
@@ -14,4 +14,4 @@ Index: OpenIPMI-2.0.22/ui/ui.c
14+#include <sys/types.h> 14+#include <sys/types.h>
15 #include <ctype.h> 15 #include <ctype.h>
16 16
17 #include <OpenIPMI/selector.h> 17 #include <OpenIPMI/ipmi_err.h>