blob: 1aea32eaecf0e915840cdee9364c45c3cc94c9ab [file] [log] [blame]
Andrew Geisslerac970dd2021-02-12 15:32:45 -06001From 5a4abf223d79d4e1a58bbad1e4f2f406c7cab748 Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: Jackie Huang <jackie.huang@windriver.com>
3Date: Mon, 29 Dec 2014 18:16:04 +0800
4Subject: [PATCH] remove host path from la_LDFLAGS
5
6Upstream-Status: Inappropriate [ cross compile specific ]
7
8Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
9---
Andrew Geisslerac970dd2021-02-12 15:32:45 -060010 cmdlang/Makefile.am | 2 +-
11 unix/Makefile.am | 4 ++--
12 2 files changed, 3 insertions(+), 3 deletions(-)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050013
Brad Bishop15ae2502019-06-18 21:44:24 -040014diff --git a/cmdlang/Makefile.am b/cmdlang/Makefile.am
Andrew Geisslerac970dd2021-02-12 15:32:45 -060015index 9cf180d..da46ceb 100644
Brad Bishop15ae2502019-06-18 21:44:24 -040016--- a/cmdlang/Makefile.am
17+++ b/cmdlang/Makefile.am
Andrew Geisslerac970dd2021-02-12 15:32:45 -060018@@ -18,7 +18,7 @@ libOpenIPMIcmdlang_la_LIBADD = -lm \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050019 $(top_builddir)/utils/libOpenIPMIutils.la \
20 $(top_builddir)/lib/libOpenIPMI.la
Andrew Geisslerac970dd2021-02-12 15:32:45 -060021 libOpenIPMIcmdlang_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION) \
22- -L$(libdir) -no-undefined
23+ -no-undefined
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024
25 bin_PROGRAMS = openipmish
26
Brad Bishop15ae2502019-06-18 21:44:24 -040027diff --git a/unix/Makefile.am b/unix/Makefile.am
Andrew Geisslerac970dd2021-02-12 15:32:45 -060028index baf0815..80c3d5d 100644
Brad Bishop15ae2502019-06-18 21:44:24 -040029--- a/unix/Makefile.am
30+++ b/unix/Makefile.am
Andrew Geisslerac970dd2021-02-12 15:32:45 -060031@@ -11,13 +11,13 @@ libOpenIPMIpthread_la_SOURCES = posix_thread_os_hnd.c selector.c
Brad Bishopd7bf8c12018-02-25 22:55:05 -050032 libOpenIPMIpthread_la_LIBADD = -lpthread $(GDBM_LIB) \
33 $(top_builddir)/utils/libOpenIPMIutils.la $(RT_LIB)
Andrew Geisslerac970dd2021-02-12 15:32:45 -060034 libOpenIPMIpthread_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION) \
35- -L$(libdir) -no-undefined
36+ -no-undefined
Brad Bishopd7bf8c12018-02-25 22:55:05 -050037
38 libOpenIPMIposix_la_SOURCES = posix_os_hnd.c selector.c
39 libOpenIPMIposix_la_LIBADD = $(top_builddir)/utils/libOpenIPMIutils.la \
40 $(GDBM_LIB) $(RT_LIB)
Andrew Geisslerac970dd2021-02-12 15:32:45 -060041 libOpenIPMIposix_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION) \
42- -L$(libdir) -no-undefined
43+ -no-undefined
Brad Bishopd7bf8c12018-02-25 22:55:05 -050044
45 noinst_HEADERS = heap.h
46
Andrew Geisslerac970dd2021-02-12 15:32:45 -060047--
482.17.1
49