Revision
3680
Author
lsansonetti@apple.com
Date
2010-03-03 12:28:30 -0800 (Wed, 03 Mar 2010)

Log Message

do not pass -I./onig anymore

Modified Paths

Diff

Modified: MacRuby/branches/icu/rakelib/builder/options.rb (3679 => 3680)


--- MacRuby/branches/icu/rakelib/builder/options.rb	2010-03-03 20:17:56 UTC (rev 3679)
+++ MacRuby/branches/icu/rakelib/builder/options.rb	2010-03-03 20:28:30 UTC (rev 3680)
@@ -101,7 +101,7 @@
 
 CC = '/usr/bin/gcc-4.2'
 CXX = '/usr/bin/g++-4.2'
-CFLAGS = "-I. -I./include -I./onig -I/usr/include/libxml2 #{ARCHFLAGS} -fno-common -pipe -O3 -g -Wall -fexceptions"
+CFLAGS = "-I. -I./include -I/usr/include/libxml2 #{ARCHFLAGS} -fno-common -pipe -O3 -g -Wall -fexceptions"
 CFLAGS << " -Wno-parentheses -Wno-deprecated-declarations -Werror" if NO_WARN_BUILD
 OBJC_CFLAGS = CFLAGS + " -fobjc-gc-only"
 CXXFLAGS = `#{LLVM_CONFIG} --cxxflags #{LLVM_MODULES}`.sub(/-DNDEBUG/, '').strip