From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Gunthorpe Subject: [RFCv2 04/15] ibcm: Actually use the version script when linking Date: Mon, 22 Aug 2016 12:13:27 -0600 Message-ID: <1471889618-1605-5-git-send-email-jgunthorpe@obsidianresearch.com> References: <1471889618-1605-1-git-send-email-jgunthorpe@obsidianresearch.com> Return-path: In-Reply-To: <1471889618-1605-1-git-send-email-jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> Sender: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Doug Ledford , linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org Cc: Devesh Sharma , Hal Rosenstock , Mike Marciniszyn , Moni Shoua , Sean Hefty , Steve Wise , Tatyana Nikolova , Vladimir Sokolovsky , Yishai Hadas List-Id: linux-rdma@vger.kernel.org There is a typo in the Makefile.am that resulted in the version script being ignored. Signed-off-by: Jason Gunthorpe --- libibcm/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libibcm/Makefile.am b/libibcm/Makefile.am index 2333930db548..58917436d4a7 100644 --- a/libibcm/Makefile.am +++ b/libibcm/Makefile.am @@ -8,9 +8,9 @@ AM_CFLAGS = -g -Wall -D_GNU_SOURCE src_libibcm_la_CFLAGS = $(AM_CFLAGS) if HAVE_LD_VERSION_SCRIPT - ibcm_version_script = -Wl,--version-script=$(srcdir)/src/libibcm.map + libibcm_version_script = -Wl,--version-script=$(srcdir)/src/libibcm.map else - ibcm_version_script = + libibcm_version_script = endif src_libibcm_la_SOURCES = src/cm.c -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html