Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
brad0 authored and eqvinox committed Sep 25, 2012
1 parent 9289c6f commit 4bed21c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ospfclient/Makefile.am
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ospfd/Makefile.am
Expand Up @@ -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

Expand Down

0 comments on commit 4bed21c

Please sign in to comment.