From: Benjamin Kaduk Date: Mon, 8 Sep 2014 22:28:11 +0000 (-0400) Subject: Use correct syntax for libtool version info X-Git-Tag: openafs-stable-1_8_0pre1~561 X-Git-Url: https://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=81189b7bc9ef66519a5bf96e20ec2fbe0267dfc8 Use correct syntax for libtool version info It does not take an '='. Whomever thought that making libtool silently accept all (i.e., malformed) command-line arguments was a good idea ... seems to have been mistaken. Change-Id: I357cd44ac6f495474f9763a2f768ac9c8d1e4cb4 Reviewed-on: http://gerrit.openafs.org/11458 Reviewed-by: Benjamin Kaduk Reviewed-by: D Brashear Tested-by: D Brashear --- diff --git a/src/config/Makefile.config.in b/src/config/Makefile.config.in index 2ca1540..7b34846 100644 --- a/src/config/Makefile.config.in +++ b/src/config/Makefile.config.in @@ -252,7 +252,7 @@ LT_LDLIB_shlib_missing=$(LIBTOOL) --quiet --mode=link --tag=CC \ $(PTH_LDFLAGS) $(PTH_CFLAGS) $(LDFLAGS_$(@)) \ -o $@ \ -export-symbols ${srcdir}/$@.sym \ - -version-info=$(LT_current):$(LT_revision):$(LT_age) + -version-info $(LT_current):$(LT_revision):$(LT_age) LT_LDLIB_shlib=$(LT_LDLIB_shlib_missing) -no-undefined