diff options
author | Rich Felker <dalias@aerifal.cx> | 2016-01-27 19:01:21 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-01-27 19:01:21 -0500 |
commit | e1d99894b6ce23055a2e29f72763e7fd9585a87f (patch) | |
tree | e46d96efc8ea76fce92267763acffd7aaad88af5 | |
parent | b0bf52f3e9fd246762958821fdc2851add05d423 (diff) | |
download | musl-e1d99894b6ce23055a2e29f72763e7fd9585a87f.tar.gz musl-e1d99894b6ce23055a2e29f72763e7fd9585a87f.tar.bz2 musl-e1d99894b6ce23055a2e29f72763e7fd9585a87f.tar.xz musl-e1d99894b6ce23055a2e29f72763e7fd9585a87f.zip |
remove unneeded -I options from configure test for may_alias attribute
this test does not include anything, so the -I options are not useful
and are just a maintenance burden if paths change.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -338,7 +338,7 @@ __attribute__((__may_alias__)) #endif x; EOF -if $CC $CFLAGS_C99FSE -I$srcdir/arch/$ARCH -I$srcdir/include $CPPFLAGS $CFLAGS \ +if $CC $CFLAGS_C99FSE $CPPFLAGS $CFLAGS \ -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then printf "no\n" else |