From: Ondřej Hošek Date: Tue, 11 Apr 2006 20:00:43 +0000 (+0000) Subject: Use Mac's libtool instead of ar to enable Universal Binary development X-Git-Url: https://git.octo.it/?a=commitdiff_plain;ds=sidebyside;h=e4050ce17d5c86c7871c52ae9736d0f5ea15b4ce;p=supertux.git Use Mac's libtool instead of ar to enable Universal Binary development SVN-Revision: 3304 --- diff --git a/mk/jam/macosx.jam b/mk/jam/macosx.jam index b5025eb20..76a097da7 100644 --- 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 $(<) $(>) } #------------------------------------------------------------------------------