[banshee] [build] hardcode python to /usr/bin/python
- From: Aaron Bockover <abock src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [banshee] [build] hardcode python to /usr/bin/python
- Date: Thu, 7 Jan 2010 22:30:30 +0000 (UTC)
commit 157d9dddb18a7f2c248f071bb707a57508a596aa
Author: Aaron Bockover <abockover novell com>
Date: Thu Jan 7 17:36:44 2010 -0500
[build] hardcode python to /usr/bin/python
GNU /usr/bin/env doesn't like passing arguments to the
target command even though it claims to support it.
Works fine on BSD/Darwin. Bite me.
build/bundle/profile.darwin.py | 2 +-
build/bundle/profile.linux.py | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/build/bundle/profile.darwin.py b/build/bundle/profile.darwin.py
index 8b6c33b..a5cc17c 100755
--- a/build/bundle/profile.darwin.py
+++ b/build/bundle/profile.darwin.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python -B
+#!/usr/bin/python -B
from bockbuild.darwinprofile import DarwinProfile
from packages import BansheePackages
diff --git a/build/bundle/profile.linux.py b/build/bundle/profile.linux.py
index 6558a08..6b15d7b 100755
--- a/build/bundle/profile.linux.py
+++ b/build/bundle/profile.linux.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python -B
+#!/usr/bin/python -B
from bockbuild.unixprofile import UnixProfile
from packages import BansheePackages
@@ -12,4 +12,4 @@ class BansheeLinuxProfile (UnixProfile, BansheePackages):
if not os.path.isdir ('/usr/include/alsa'):
raise IOError ('You must have the ALSA headers installed. (/usr/include/alsa)')
-BansheeLinuxProfile ().run ()
+BansheeLinuxProfile ().build ()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]