diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-04-18 23:44:36 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-04-18 23:53:01 -0400 |
commit | 2c2645d7a8b0498d7b581eae709e0f2ba51dcfe6 (patch) | |
tree | cb26bf3fc746efd5a11e313ef9e5285cb7388e52 /sim/h8300/configure.ac | |
parent | 41e166b43b16db5980a5fe011c0165642ee1708a (diff) | |
download | gdb-2c2645d7a8b0498d7b581eae709e0f2ba51dcfe6.zip gdb-2c2645d7a8b0498d7b581eae709e0f2ba51dcfe6.tar.gz gdb-2c2645d7a8b0498d7b581eae709e0f2ba51dcfe6.tar.bz2 |
sim: switch to AC_CHECK_HEADERS_ONCE
This avoids duplicate tests for headers between common m4, arches,
and any other sources that would trigger header tests.
Diffstat (limited to 'sim/h8300/configure.ac')
-rw-r--r-- | sim/h8300/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/h8300/configure.ac b/sim/h8300/configure.ac index 177f7de..8dc33c4 100644 --- a/sim/h8300/configure.ac +++ b/sim/h8300/configure.ac @@ -8,6 +8,6 @@ SIM_AC_OPTION_ENDIAN(BIG) SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT) SIM_AC_OPTION_WARNINGS(no) -AC_CHECK_HEADERS(sys/param.h) +AC_CHECK_HEADERS_ONCE(sys/param.h) SIM_AC_OUTPUT |