diff options
| author | Martin Szarski | 2011-12-27 18:47:24 +1100 |
|---|---|---|
| committer | Adam Vandenberg | 2011-12-29 20:43:01 -0800 |
| commit | 9a9a4eaee004d9c3aa6956c95f5c359b85cebed4 (patch) | |
| tree | 1237e60f234fc14b82dbf463e17087f6bb6d081b /Library | |
| parent | 350d4d13fe2204cb4ba2d1036716c755b69f91cc (diff) | |
| download | homebrew-9a9a4eaee004d9c3aa6956c95f5c359b85cebed4.tar.bz2 | |
opencv: fix 32-bit build
Removed extra space at the start of -DOPENCV_EXTRA_C_FLAGS parameter that was
killing the 32bit build on Mac OS X Lion.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/opencv.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/opencv.rb b/Library/Formula/opencv.rb index a952b82e4..00e4a8bbd 100644 --- a/Library/Formula/opencv.rb +++ b/Library/Formula/opencv.rb @@ -39,7 +39,7 @@ class Opencv < Formula def install args = std_cmake_parameters.split - args << " -DOPENCV_EXTRA_C_FLAGS='-arch i386 -m32'" if ARGV.include? '--build32' + args << "-DOPENCV_EXTRA_C_FLAGS='-arch i386 -m32'" if ARGV.include? '--build32' # The CMake `FindPythonLibs` Module is dumber than a bag of hammers when # more than one python installation is available---for example, it clings |
