Skip to content

Commit

Permalink
build: Don't use both -release and -version-info.
Browse files Browse the repository at this point in the history
GNU libtool documentation says that these should not be used at the same time.
  • Loading branch information
orbea committed Jan 21, 2021
1 parent acd6f6f commit 6f1c7ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AM_CPPFLAGS = -I$(top_srcdir)/include -Wall
lib_LTLIBRARIES = libyaml.la
libyaml_la_SOURCES = yaml_private.h api.c reader.c scanner.c parser.c loader.c writer.c emitter.c dumper.c
libyaml_la_LDFLAGS = -no-undefined -release $(YAML_LT_RELEASE) -version-info $(YAML_LT_CURRENT):$(YAML_LT_REVISION):$(YAML_LT_AGE)
libyaml_la_LDFLAGS = -no-undefined -version-info $(YAML_LT_CURRENT):$(YAML_LT_REVISION):$(YAML_LT_AGE)

0 comments on commit 6f1c7ef

Please sign in to comment.