projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba2ea5f
)
Use Mac's libtool instead of ar to enable Universal Binary development
author
Ondřej Hošek
<ondra.hosek@gmail.com>
Tue, 11 Apr 2006 20:00:43 +0000
(20:00 +0000)
committer
Ondřej Hošek
<ondra.hosek@gmail.com>
Tue, 11 Apr 2006 20:00:43 +0000
(20:00 +0000)
SVN-Revision: 3304
mk/jam/macosx.jam
patch
|
blob
|
history
diff --git
a/mk/jam/macosx.jam
b/mk/jam/macosx.jam
index
b5025eb
..
76a097d
100644
(file)
--- a/
mk/jam/macosx.jam
+++ b/
mk/jam/macosx.jam
@@
-7,12
+7,12
@@
DEEPCOPY ?= "cp -R" ;
# Experience seems to indicate that library scanning misbehaves on MacOS/X with
# Jam 2.4, consequently we disable it.
-
AR = "ar ru
" ;
+
MACLIBTOOL = "libtool
" ;
NOARUPDATE = true ;
NOARSCAN = true ;
actions Archive
{
- $(
AR)
$(<) $(>)
+ $(
MACLIBTOOL) -static -o
$(<) $(>)
}
#------------------------------------------------------------------------------