diff options
author | Matt Turner <mattst88@gmail.com> | 2024-01-08 14:48:49 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2024-01-08 14:48:49 -0500 |
commit | 1031f8cc5c7a170e278372ccdf2e70151b096ef7 (patch) | |
tree | 5f3861da3da7d2352fe54e124ead66bdefdf4767 | |
parent | cb147377e9341af05232f95814022abdecf14024 (diff) |
Remove unnecessary escape
Avoids warnings like:
checking if /usr/bin/cpp requires -traditional... grep: warning: stray \ before "
grep: warning: stray \ before "
-rw-r--r-- | xorg-macros.m4.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg-macros.m4.in b/xorg-macros.m4.in index 3b8b8e9..66c3435 100644 --- a/xorg-macros.m4.in +++ b/xorg-macros.m4.in @@ -83,10 +83,10 @@ rm -f conftest.$ac_ext AC_MSG_CHECKING([if $RAWCPP requires -traditional]) AC_LANG_CONFTEST([AC_LANG_SOURCE([[Does cpp preserve "whitespace"?]])]) -if test `${RAWCPP} < conftest.$ac_ext | grep -c 'preserve \"'` -eq 1 ; then +if test `${RAWCPP} < conftest.$ac_ext | grep -c 'preserve "'` -eq 1 ; then AC_MSG_RESULT([no]) else - if test `${RAWCPP} -traditional < conftest.$ac_ext | grep -c 'preserve \"'` -eq 1 ; then + if test `${RAWCPP} -traditional < conftest.$ac_ext | grep -c 'preserve "'` -eq 1 ; then TRADITIONALCPPFLAGS="-traditional" RAWCPPFLAGS="${RAWCPPFLAGS} -traditional" AC_MSG_RESULT([yes]) |