summaryrefslogtreecommitdiff
path: root/netware
diff options
context:
space:
mode:
authorunknown <msvensson@neptunus.(none)>2006-10-24 13:12:34 +0200
committerunknown <msvensson@neptunus.(none)>2006-10-24 13:12:34 +0200
commitb0626431808b30a4dac6f5442157ad878c8caa93 (patch)
tree610a5116d3ee771c93e68b56db130522714d5175 /netware
parent375b04b9fe8826bd666b49421b5176a9316039e8 (diff)
downloadmariadb-git-b0626431808b30a4dac6f5442157ad878c8caa93.tar.gz
Replace all refernces to .la libraries with direct references
to their .libs/*.a library Add comment describing why mwldnlm is called with "x" flag configure.in: Replace references to yassl .la libraries with direct reference to the .a libraries netware/BUILD/mwldnlm: Add comment about why mwldnlm is called with the "x" flag and how to avoid it
Diffstat (limited to 'netware')
-rwxr-xr-xnetware/BUILD/mwldnlm7
1 files changed, 7 insertions, 0 deletions
diff --git a/netware/BUILD/mwldnlm b/netware/BUILD/mwldnlm
index cc8c9e63c6e..b1822827b59 100755
--- a/netware/BUILD/mwldnlm
+++ b/netware/BUILD/mwldnlm
@@ -3,6 +3,13 @@
# stop on errors
set -e
+# If libtool passes "x" as the first argument to this script
+# it's an indication that libtool is trying to unpack .la's
+# so they can be added to a new library
+# This step does not work on Netware and we avoid it by
+# replacing the .la library with the path to the .a library
+# in Makefile.in
+
args=" $*"
# NOTE: Option 'pipefail' is not standard sh