diff options
| author | Jack Nagel | 2014-04-29 00:11:54 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-04-29 00:11:54 -0500 |
| commit | b7b038fb524be8ee2996d8cd3abe627e6b97f5f4 (patch) | |
| tree | 212cc901daac39f156f50fa0a18738c98e0cd0e3 /Library | |
| parent | 7be34d2f39f4fd4e7fbc2d5cfc7b0bb866e93ad2 (diff) | |
| download | homebrew-b7b038fb524be8ee2996d8cd3abe627e6b97f5f4.tar.bz2 | |
We don't use -Qunused-arguments anymore
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/python.rb | 1 | ||||
| -rw-r--r-- | Library/Formula/python3.rb | 1 | ||||
| -rw-r--r-- | Library/Homebrew/extend/ENV/std.rb | 4 |
3 files changed, 0 insertions, 6 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index 5b4f214d8..d12d86d96 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -239,7 +239,6 @@ class Python < Formula # 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 end diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb index 581cae744..bbf005769 100644 --- a/Library/Formula/python3.rb +++ b/Library/Formula/python3.rb @@ -211,7 +211,6 @@ class Python3 < Formula # 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 end diff --git a/Library/Homebrew/extend/ENV/std.rb b/Library/Homebrew/extend/ENV/std.rb index 689eed7a1..c90edf0b6 100644 --- a/Library/Homebrew/extend/ENV/std.rb +++ b/Library/Homebrew/extend/ENV/std.rb @@ -260,7 +260,6 @@ module Stdenv # we've seen some packages fail to build when warnings are disabled! def enable_warnings remove_from_cflags '-w' - remove_from_cflags '-Qunused-arguments' end def m64 @@ -338,9 +337,6 @@ module Stdenv else append flags, map.fetch(Hardware::CPU.family, default) end - - # not really a 'CPU' cflag, but is only used with clang - remove flags, '-Qunused-arguments' end def set_cpu_cflags default=DEFAULT_FLAGS, map=Hardware::CPU.optimization_flags |
