summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-07-11 19:47:29 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-07-11 19:48:28 +0200
commit644b2c4f00386d8c4dcded19f7f4d6d071302497 (patch)
tree3c22aaf9234578069637a0c27be3c386d50edfce
parentf5652db40ef5a90a3b644a5ab4ce495c79a7692b (diff)
osx: fix xml::parser installation in bootstrap
-rw-r--r--cerbero/bootstrap/osx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/bootstrap/osx.py b/cerbero/bootstrap/osx.py
index a09d413..bef1aa8 100644
--- a/cerbero/bootstrap/osx.py
+++ b/cerbero/bootstrap/osx.py
@@ -52,7 +52,7 @@ class OSXBootstraper (BootstraperBase):
shell.download(self.CPANM_URL, cpanm_installer)
shell.call('chmod +x %s' % cpanm_installer)
# Install XML::Parser, required for intltool
- shell.call("%s XML::Parser" % cpanm_installer)
+ shell.call("sudo %s XML::Parser" % cpanm_installer)