Today, I ran into an issue installing this gem, with the presence of CFLAGS unix var, that is set to -I/opt/boxen/homebrew/include on my box, I got error:
configure: error: unrecognized option: `-I/opt/boxen/homebrew/include'
Try `configure --help' for more information
Obviously, unset this UNIX var resolves the issue. It makes me wonder if it should fail or not because CFLAGS is a common flag and majority of other C-based gems are doing fine with the presence of it. Maybe the gem should be graceful with this var presence.
Today, I ran into an issue installing this gem, with the presence of
CFLAGS
unix var, that is set to-I/opt/boxen/homebrew/include
on my box, I got error:Obviously, unset this UNIX var resolves the issue. It makes me wonder if it should fail or not because
CFLAGS
is a common flag and majority of other C-based gems are doing fine with the presence of it. Maybe the gem should be graceful with this var presence.