diff options
author | Brad Smith <brad@comstyle.com> | 2012-08-09 00:40:09 +0000 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2012-09-25 05:56:00 +0200 |
commit | 4bed21c402fa1079301d47811a4579985997c881 (patch) | |
tree | 977e18bc3403395a33de2d5fef1d5d738fa42cf7 /ospfclient | |
parent | 9289c6ff55cd96c943d23e43fc9e5f987aa965ed (diff) |
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 <equinox@opensourcerouting.org>
Diffstat (limited to 'ospfclient')
-rw-r--r-- | ospfclient/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfclient/Makefile.am b/ospfclient/Makefile.am index 607bbed6..0f37aa98 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 |