scons: always use system Python

Fixes Homebrew/homebrew#5794
master
Adam Vandenberg 2011-08-31 21:25:42 -07:00
parent 92abd7e4ba
commit 0961a379e9
1 changed files with 4 additions and 4 deletions

View File

@ -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