diff options
| author | Adam Vandenberg | 2011-08-31 21:25:42 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-08-31 21:26:06 -0700 |
| commit | ff0d38f371057e641bbc4ad7c4801db3eaf4b81e (patch) | |
| tree | 3adf8e1cf7a2aee08da0c52907e0b05b846e270d /Library/Formula/scons.rb | |
| parent | 2586eb7347626b9896fe2e878b4bb0210adfd507 (diff) | |
| download | homebrew-ff0d38f371057e641bbc4ad7c4801db3eaf4b81e.tar.bz2 | |
scons: always use system Python
Fixes #5794
Diffstat (limited to 'Library/Formula/scons.rb')
| -rw-r--r-- | Library/Formula/scons.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/scons.rb b/Library/Formula/scons.rb index 3d95abd9f..a2f66dca7 100644 --- a/Library/Formula/scons.rb +++ b/Library/Formula/scons.rb @@ -7,9 +7,9 @@ class Scons < Formula def install man1.install gzip('scons-time.1', 'scons.1', 'sconsign.1') - system "python", "setup.py", "install", - "--prefix=#{prefix}", - "--standalone-lib", - "--no-version-script", "--no-install-man" + system "/usr/bin/python", "setup.py", "install", + "--prefix=#{prefix}", + "--standalone-lib", + "--no-version-script", "--no-install-man" end end |
