diff options
| author | Jack Nagel | 2014-05-10 16:54:30 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-10 16:54:30 -0500 |
| commit | 346de91838b50401455e2473deb9ea110e5862c4 (patch) | |
| tree | 2a3be7f466bc1eaac4e39669ce89fbe680159140 /Library/ENV | |
| parent | 50b8a68d314cf93ab9dbc21a7030f2fb7e5b45fc (diff) | |
| download | homebrew-346de91838b50401455e2473deb9ea110e5862c4.tar.bz2 | |
Ensure HOMEBREW_ARCHFLAGS is always a string
Diffstat (limited to 'Library/ENV')
| -rwxr-xr-x | Library/ENV/4.3/cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/ENV/4.3/cc b/Library/ENV/4.3/cc index 4183cdc96..d66b6dc83 100755 --- a/Library/ENV/4.3/cc +++ b/Library/ENV/4.3/cc @@ -233,9 +233,7 @@ class Cmd end def archflags - args = [] - args.concat ENV['HOMEBREW_ARCHFLAGS'].split(' ') if cccfg? 'u' - args + ENV["HOMEBREW_ARCHFLAGS"].split(" ") end def syspath |
