Skip to content

Commit

Permalink
Revert "add release flag to makefile.shared"
Browse files Browse the repository at this point in the history
This reverts commit 1427297.

This is neither a 'package-internal library' nor
one 'whose interfaces change very frequently' so we remove the
release information again from the shared library.
  • Loading branch information
sjaeckel committed Mar 22, 2017
1 parent 283ea0c commit f7bd454
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions makefile.shared
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ include makefile.include
# The version
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
VERSION=0:117
# http://www.gnu.org/software/libtool/manual/html_node/Release-numbers.html
RELEASE=1.17


LT ?= libtool
Expand Down Expand Up @@ -206,7 +204,7 @@ testprof/$(LIBTEST):
$(LTCOMPILE) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ -c $<

$(LIBNAME): $(OBJECTS)
$(LT) --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) `find ./src -type f -name "*.lo"` $(EXTRALIBS) -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION) -release $(RELEASE)
$(LT) --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) `find ./src -type f -name "*.lo"` $(EXTRALIBS) -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION)

install: $(LIBNAME)
install -d $(DESTDIR)$(LIBPATH)
Expand Down

0 comments on commit f7bd454

Please sign in to comment.