From 9a9a4eaee004d9c3aa6956c95f5c359b85cebed4 Mon Sep 17 00:00:00 2001 From: Martin Szarski Date: Tue, 27 Dec 2011 18:47:24 +1100 Subject: 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 --- Library/Formula/opencv.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library/Formula') 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 -- cgit v1.2.3