Override result of AC_PROG_LN_S to fix FTBFS on ppc64el
authorOndřej Surý <ondrej@sury.org>
Mon, 3 Jan 2022 14:32:12 +0000 (15:32 +0100)
committerOndřej Surý <ondrej@debian.org>
Thu, 11 Apr 2024 20:30:26 +0000 (22:30 +0200)
Gbp-Pq: Name 0043-Override-result-of-AC_PROG_LN_S-to-fix-FTBFS-on-ppc6.patch

configure.ac

index 3fd5ecca12def7e23254d5fcaa00d4bdd0a48551..02919ef1e94b659e64239adfdb2f874a3c726d43 100644 (file)
@@ -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)