summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBrian <brian@yutani.localnet.net>2007-05-08 14:03:04 -0600
committerBrian <brian@yutani.localnet.net>2007-05-08 14:03:04 -0600
commited2fddc98ef017d8b6460e326d08ce2635458812 (patch)
tree86a54fde80dd31b23f7906a645fb2f18c09a11d8 /bin
parent58eaf0accaa38f6e02d7af928ea0851cb4ae91cd (diff)
special case for -pthread (bug 10876)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/mklib4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/mklib b/bin/mklib
index 09f4fac9e5..21d48edd77 100755
--- a/bin/mklib
+++ b/bin/mklib
@@ -100,6 +100,10 @@ do
-L*)
DEPS="$DEPS $1"
;;
+ -pthread)
+ # this is a special case (see bugzilla 10876)
+ DEPS="$DEPS $1"
+ ;;
'-cplusplus')
CPLUSPLUS=1
;;