mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
51 lines
1.9 KiB
Diff
51 lines
1.9 KiB
Diff
From aa0dc0783a6ff5fb56c914b640836223e3c192bb Mon Sep 17 00:00:00 2001
|
|
From: Jackie Huang <jackie.huang@windriver.com>
|
|
Date: Mon, 29 Dec 2014 18:16:04 +0800
|
|
Subject: [PATCH] remove host path from la_LDFLAGS
|
|
|
|
Upstream-Status: Inappropriate [ cross compile specific ]
|
|
|
|
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
|
---
|
|
cmdlang/Makefile.am | 2 +-
|
|
glib/Makefile.am | 4 ++--
|
|
tcl/Makefile.am | 2 +-
|
|
unix/Makefile.am | 4 ++--
|
|
4 files changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
Index: OpenIPMI-2.0.24/cmdlang/Makefile.am
|
|
===================================================================
|
|
--- OpenIPMI-2.0.24.orig/cmdlang/Makefile.am
|
|
+++ OpenIPMI-2.0.24/cmdlang/Makefile.am
|
|
@@ -15,8 +15,7 @@ libOpenIPMIcmdlang_la_SOURCES = cmdlang.
|
|
libOpenIPMIcmdlang_la_LIBADD = -lm \
|
|
$(top_builddir)/utils/libOpenIPMIutils.la \
|
|
$(top_builddir)/lib/libOpenIPMI.la
|
|
-libOpenIPMIcmdlang_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION) \
|
|
- -L$(libdir)
|
|
+libOpenIPMIcmdlang_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION)
|
|
|
|
bin_PROGRAMS = openipmish
|
|
|
|
Index: OpenIPMI-2.0.24/unix/Makefile.am
|
|
===================================================================
|
|
--- OpenIPMI-2.0.24.orig/unix/Makefile.am
|
|
+++ OpenIPMI-2.0.24/unix/Makefile.am
|
|
@@ -10,14 +10,12 @@ lib_LTLIBRARIES = libOpenIPMIposix.la li
|
|
libOpenIPMIpthread_la_SOURCES = posix_thread_os_hnd.c selector.c
|
|
libOpenIPMIpthread_la_LIBADD = -lpthread $(GDBM_LIB) \
|
|
$(top_builddir)/utils/libOpenIPMIutils.la $(RT_LIB)
|
|
-libOpenIPMIpthread_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION) \
|
|
- -L$(libdir)
|
|
+libOpenIPMIpthread_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION)
|
|
|
|
libOpenIPMIposix_la_SOURCES = posix_os_hnd.c selector.c
|
|
libOpenIPMIposix_la_LIBADD = $(top_builddir)/utils/libOpenIPMIutils.la \
|
|
$(GDBM_LIB) $(RT_LIB)
|
|
-libOpenIPMIposix_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION) \
|
|
- -L$(libdir)
|
|
+libOpenIPMIposix_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION)
|
|
|
|
noinst_HEADERS = heap.h
|
|
|