mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
traditional grep does not have -q option
This commit is contained in:
parent
751887b4c1
commit
9d74f0c601
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ void foo (void) { }
|
||||||
EOF
|
EOF
|
||||||
if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS
|
if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS
|
||||||
-S -o conftest.s conftest.c 1>&AS_MESSAGE_LOG_FD]) \
|
-S -o conftest.s conftest.c 1>&AS_MESSAGE_LOG_FD]) \
|
||||||
&& grep -q .note.GNU-stack conftest.s \
|
&& grep .note.GNU-stack conftest.s >/dev/null \
|
||||||
&& AC_TRY_COMMAND([${CC-cc} $CCASFLAGS $CPPFLAGS -Wa,--noexecstack
|
&& AC_TRY_COMMAND([${CC-cc} $CCASFLAGS $CPPFLAGS -Wa,--noexecstack
|
||||||
-c -o conftest.o conftest.s 1>&AS_MESSAGE_LOG_FD])
|
-c -o conftest.o conftest.s 1>&AS_MESSAGE_LOG_FD])
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in a new issue