diff options
author | Julien Cristau <jcristau@debian.org> | 2008-07-13 17:13:32 +0200 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-07-14 08:37:38 -0600 |
commit | f7eb0cec69f35c88baa82b8366b37964269feb92 (patch) | |
tree | 31997b361e0982eb7b078c4be9deb9aa116a7883 /bin | |
parent | a63b90712aad81d544eb8931493a6c4a7805f7fb (diff) |
mklib: don't version symbols when using --exports
Use the default version instead of one based on the library SONAME
in the version script created by --exports.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/mklib | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -271,7 +271,7 @@ case $ARCH in if [ $EXPORTS ] ; then #OPTS="${OPTS} -Xlinker --retain-symbols-file ${EXPORTS}" # Make the 'exptmp' file for --version-script option - echo "VERSION_${MAJOR}.${MINOR} {" > exptmp + echo "{" > exptmp echo "global:" >> exptmp sed 's/$/;/' ${EXPORTS} >> exptmp echo "local:" >> exptmp |