ENV/super: fix set_cpu_flags stub.

It should accept arguments.

Fixes https://github.com/Homebrew/homebrew-core/issues/8362
This commit is contained in:
Mike McQuaid 2016-12-31 22:43:42 +00:00
parent ad593cf42c
commit f0fbcf5022

View File

@ -328,7 +328,8 @@ module Superenv
# This method does nothing in superenv since there's no custom CFLAGS API # This method does nothing in superenv since there's no custom CFLAGS API
# @private # @private
def set_cpu_flags; end def set_cpu_flags(*_args)
end
end end
class Array class Array