diff options
author | Thiago Santos <thiago.sousa.santos@collabora.com> | 2012-06-29 17:48:31 -0300 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-08-08 13:02:28 +0200 |
commit | db8667b4ce116bc457f215279e6b753d6b8a213b (patch) | |
tree | b7cb27b36c220e13ecfc0c332bea770599a2111a /config | |
parent | 3503ead66ac27e17fb8ae8345df1c79ac7b3367b (diff) |
darwin: adds universal target to default config file
Diffstat (limited to 'config')
-rw-r--r-- | config/darwin.config | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/darwin.config b/config/darwin.config index 295a9d81..7c700719 100644 --- a/config/darwin.config +++ b/config/darwin.config @@ -25,6 +25,11 @@ elif target_arch == Architecture.PPC: prefix=prefix or os.path.expanduser('~/cerbero/dist/osx_ppc') sources=sources or os.path.expanduser('~/cerbero/sources/osx_ppc') cache_file='osx_ppc' +elif target_arch == Architecture.UNIVERSAL: + build='universal-apple-darwinx' + prefix=prefix or os.path.expanduser('~/cerbero/dist/universal') + sources=sources or os.path.expanduser('~/cerbero/sources/universal') + cache_file='osx_universal' if distro_version == DistroVersion.OS_X_LEOPARD: # autotools in OSX 10.5 (Leopard) are a bit oldy/broken. |