From: Brad Smith Date: Thu, 9 Aug 2012 00:40:09 +0000 (+0000) Subject: build: correct libtool parameter used within Makefiles X-Git-Tag: frr-2.0-rc1~1785 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=4bed21c402fa1079301d47811a4579985997c881;p=matthieu%2Ffrr.git build: correct libtool parameter used within Makefiles This corrects the parameters passed to libtool when linking the shared libraries. The paramter name is -version-info not -version. Signed-off-by: David Lamparter --- diff --git a/ospfclient/Makefile.am b/ospfclient/Makefile.am index 607bbed6f4..0f37aa9884 100644 --- a/ospfclient/Makefile.am +++ b/ospfclient/Makefile.am @@ -3,7 +3,7 @@ INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib lib_LTLIBRARIES = libospfapiclient.la -libospfapiclient_la_LDFLAGS = -version 0:0:0 +libospfapiclient_la_LDFLAGS = -version-info 0:0:0 sbin_PROGRAMS = ospfclient diff --git a/ospfd/Makefile.am b/ospfd/Makefile.am index f968d7d613..4e1a4fe9f0 100644 --- a/ospfd/Makefile.am +++ b/ospfd/Makefile.am @@ -5,7 +5,7 @@ DEFS = @DEFS@ $(LOCAL_OPTS) -DSYSCONFDIR=\"$(sysconfdir)/\" INSTALL_SDATA=@INSTALL@ -m 600 lib_LTLIBRARIES = libospf.la -libospf_la_LDFLAGS = -version 0:0:0 +libospf_la_LDFLAGS = -version-info 0:0:0 sbin_PROGRAMS = ospfd