projects
/
php8.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64d71f7
)
Override result of AC_PROG_LN_S to fix FTBFS on ppc64el
author
Ondřej Surý
<ondrej@sury.org>
Mon, 3 Jan 2022 14:32:12 +0000
(15:32 +0100)
committer
Ondřej Surý
<ondrej@debian.org>
Tue, 24 Dec 2024 06:20:41 +0000
(07:20 +0100)
Gbp-Pq: Name 0043-Override-result-of-AC_PROG_LN_S-to-fix-FTBFS-on-ppc6.patch
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index c5c5a52d3cad726a60b66e059e5681941344ffee..52017ea58dc052b3c631a60bcb18e5c3e56e43d9 100644
(file)
--- 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)