diff options
author | NIIBE Yutaka <[email protected]> | 2023-05-26 00:10:15 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2023-05-26 00:10:15 +0000 |
commit | 6877540eb1fcc159302b1722264e1059c9f32bc1 (patch) | |
tree | 15759a943a5235378e0f81e874a0ee1bd5cf5db0 | |
parent | core: Add hurd-amd64 support (diff) | |
download | libgpg-error-6877540eb1fcc159302b1722264e1059c9f32bc1.tar.gz libgpg-error-6877540eb1fcc159302b1722264e1059c9f32bc1.zip |
Add GNU system support for cross compilation.
* configure.ac: Cross compile should work well for
GNU system.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d0fa6f2..ca7731c 100644 --- a/configure.ac +++ b/configure.ac @@ -590,7 +590,7 @@ if test x"$gl_use_threads" = xno; then AC_MSG_NOTICE([generated src/lock-obj-pub.native.h for $host]) elif test x$cross_compiling = xyes; then case $host in - *-*-linux-gnu* | *-*-linux-musl*) + *-*-gnu* | *-*-linux-gnu* | *-*-linux-musl*) AC_CHECK_TOOL(OBJDUMP, [objdump]) if test -n "$OBJDUMP"; then lock_obj_h_generated=yes |