diff options
author | NIIBE Yutaka <[email protected]> | 2021-12-13 05:20:39 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2021-12-13 05:20:39 +0000 |
commit | e17cf023d894acc3932505f66fbd9c31ce56793f (patch) | |
tree | 738ef94456dded4c4f274283275417b44d404b92 | |
parent | configure: Add missing check for logging (diff) | |
download | libgpg-error-e17cf023d894acc3932505f66fbd9c31ce56793f.tar.gz libgpg-error-e17cf023d894acc3932505f66fbd9c31ce56793f.zip |
build: Detect a system with musl, as a variant of GNU System.
* configure.ac: Add *-*-linux-musl.
--
Reported-by: Alexander Kanavin <[email protected]>
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 62f2634..35c0324 100644 --- a/configure.ac +++ b/configure.ac @@ -605,7 +605,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-gnu* | *-*-linux-musl) AC_CHECK_TOOL(OBJDUMP, [objdump]) if test -n "$OBJDUMP"; then lock_obj_h_generated=yes |