diff options
author | Daniel Kahn Gillmor <[email protected]> | 2022-01-17 18:52:44 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2022-01-18 02:33:04 +0000 |
commit | 0150919b6a8244be1055d01ad21d6fa47788ab0e (patch) | |
tree | 5724f8895f6d9a7bf6be5fddac481b822dee235a | |
parent | po,w32: Directly run msgfmt at install-data-hook. (diff) | |
download | libgpg-error-0150919b6a8244be1055d01ad21d6fa47788ab0e.tar.gz libgpg-error-0150919b6a8244be1055d01ad21d6fa47788ab0e.zip |
build: Detect more flexible musl variants of GNU
* configure.ac: expand *-*-linux-musl to *-*-linux-musl*.
--
GnuPG-bug-id: 5762
Reported-by: Helmut Grohne <[email protected]>
Signed-off-by: Daniel Kahn Gillmor <[email protected]>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 27b2f27..c7f727d 100644 --- a/configure.ac +++ b/configure.ac @@ -604,7 +604,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) + *-*-linux-gnu* | *-*-linux-musl*) AC_CHECK_TOOL(OBJDUMP, [objdump]) if test -n "$OBJDUMP"; then lock_obj_h_generated=yes |