summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJulien Cristau <jcristau@debian.org>2008-07-13 17:13:32 +0200
committerBrian Paul <brian.paul@tungstengraphics.com>2008-07-14 08:37:38 -0600
commitf7eb0cec69f35c88baa82b8366b37964269feb92 (patch)
tree31997b361e0982eb7b078c4be9deb9aa116a7883 /bin
parenta63b90712aad81d544eb8931493a6c4a7805f7fb (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-xbin/mklib2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mklib b/bin/mklib
index 0dc3135d50..69e82420a1 100755
--- a/bin/mklib
+++ b/bin/mklib
@@ -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