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.
diff --git a/bin/mklib b/bin/mklib
index 0dc3135..69e8242 100755
--- a/bin/mklib
+++ b/bin/mklib
@@ -271,7 +271,7 @@
 	    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