]> Kevux Git Server - fll/commit
Bugfix: shared library link names are incorrect
authorKevin Day <thekevinday@gmail.com>
Sun, 7 Jun 2020 02:32:27 +0000 (21:32 -0500)
committerKevin Day <thekevinday@gmail.com>
Sun, 7 Jun 2020 02:32:27 +0000 (21:32 -0500)
commit7ccfb36339ffc70a67ea8f03b6f94098c7ac04cd
tree22903aff5f0bdc84e80dc17b178368194f97e177
parent1ee1b70888dedac3fb5536bda0fbf1a96441e369
Bugfix: shared library link names are incorrect

The standard link names are:
  libfake.so -> libfake.so.0
  libfake.so.0 -> libfake.so.0.5.0

Instead, I had:
  libfake.so.0 -> libfake.so.0.5
  libfake.so.0.5 -> libfake.so.0.5.0

While I am at it, make these links reflect the version_target setting.
If target is major, then standard link names above are followed.
If target is minor, then:
  libfake.so -> libfake.so.0.5
  libfake.so.0.5 -> libfake.so.0.5.0
If target is micro, then:
  libfake.so -> libfake.so.0.5.0
level_3/fake/c/private-build.c
level_3/fake/c/private-build.h