From 90856ca456d5d2b20dbf23da6d04f365e47e0ddd Mon Sep 17 00:00:00 2001 From: Kamila Szewczyk Date: Tue, 15 Oct 2024 13:35:27 +0200 Subject: [PATCH] configure: unconditionally check for AS --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2e4e773..5baaeea 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,7 @@ AM_INIT_AUTOMAKE([-Wall color-tests]) AC_PROG_INSTALL AC_PROG_MAKE_SET AC_PROG_CC +AM_PROG_AS AC_CHECK_HEADERS([getopt.h io.h]) AC_CHECK_FUNCS([getopt_long asprintf strndup stat _commit _setmode isatty fsync mmap CreateFileMappingA]) @@ -38,7 +39,6 @@ AC_ARG_ENABLE([aarch64], [AS_HELP_STRING([--enable-aarch64], [Enable aarch64 pla if test "x$enable_aarch64" = "xyes"; then AC_DEFINE([XPAR_AARCH64], [1], [Enable aarch64 platform specific code.]) AM_CONDITIONAL([XPAR_AARCH64], [true]) - AM_PROG_AS else AM_CONDITIONAL([XPAR_AARCH64], [false]) fi