From 6aa67ee87874520648262ff98f9ba394efc55739 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Mon, 3 Jan 2022 15:32:12 +0100 Subject: [PATCH] Override result of AC_PROG_LN_S to fix FTBFS on ppc64el Gbp-Pq: Name 0043-Override-result-of-AC_PROG_LN_S-to-fix-FTBFS-on-ppc6.patch --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index 1db407b9..23eb4453 100644 --- a/configure.ac +++ b/configure.ac @@ -135,6 +135,11 @@ AC_PROG_CPP AC_USE_SYSTEM_EXTENSIONS AC_PROG_LN_S +if test "$LN_S" != "ln -s"; then + AC_MSG_WARN([Overriding result of AC_PROG_LN_S, ln -s always works here]) + LN_S='ln -s' +fi + if test "$cross_compiling" = yes ; then AC_MSG_CHECKING(for native build C compiler) AC_CHECK_PROGS(BUILD_CC, [gcc clang c99 c89 cc cl],none) -- 2.30.2