diff options
author | lloyd <[email protected]> | 2009-06-06 20:12:33 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-06-06 20:12:33 +0000 |
commit | f92ebabfe414d19003e83db40e808d6d8315fa14 (patch) | |
tree | 0080e09084e122555bdc716c44abbf0816343fe4 /src/build-data | |
parent | 5da417b56d5ad772c32a981a56f048c3487dfff0 (diff) |
Patch to fix --as-needed bug was slightly wrong: linked to -lbotan-@{version},
but with the most recent change to decouple version # and so version this
is wrong - use @{var:so_version} instead.
Diffstat (limited to 'src/build-data')
-rw-r--r-- | src/build-data/makefile/unix_shr.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-data/makefile/unix_shr.in b/src/build-data/makefile/unix_shr.in index 1b139e0dc..5b1522f70 100644 --- a/src/build-data/makefile/unix_shr.in +++ b/src/build-data/makefile/unix_shr.in @@ -85,7 +85,7 @@ all: $(LIBRARIES) # Link Commands # ################################################## $(CHECK): $(LIBRARIES) $(CHECKOBJS) - $(CXX) $(LDFLAGS) $(CHECKOBJS) -o $(CHECK) -L. -lbotan-@{var:version} $(LINK_TO) + $(CXX) $(LDFLAGS) $(CHECKOBJS) -o $(CHECK) -L. -lbotan-@{var:so_version} $(LINK_TO) $(STATIC_LIB): $(LIBOBJS) $(RM) $(STATIC_LIB) |