From 9c6093f8fc034bf66a3b3555b6c18050fad2debd Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Mon, 13 Aug 2012 20:25:03 -0500 Subject: python3: wrap clang flags in a conditional Signed-off-by: Jack Nagel --- Library/Formula/python3.rb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'Library/Formula/python3.rb') diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb index 052cd2772..b410435d6 100644 --- a/Library/Formula/python3.rb +++ b/Library/Formula/python3.rb @@ -76,10 +76,12 @@ class Python3 < Formula # We need to enable warnings because the configure.in uses -Werror to detect # "whether gcc supports ParseTuple" (https://github.com/mxcl/homebrew/issues/12194) ENV.enable_warnings - # http://docs.python.org/devguide/setup.html#id8 suggests to disable some Warnings. - ENV.append_to_cflags '-Wno-unused-value' - ENV.append_to_cflags '-Wno-empty-body' - ENV.append_to_cflags '-Qunused-arguments' + if ENV.compiler == :clang + # http://docs.python.org/devguide/setup.html#id8 suggests to disable some Warnings. + ENV.append_to_cflags '-Wno-unused-value' + ENV.append_to_cflags '-Wno-empty-body' + ENV.append_to_cflags '-Qunused-arguments' + end # Allow sqlite3 module to load extensions: # http://docs.python.org/library/sqlite3.html#f1 -- cgit v1.2.3