Skip to content

Commit cf587c1

Browse files
petkMaxKellermann
andauthored
Fix GH-11603: Set LDFLAGS (#11605)
The two unsets before the last `unset LIBS LDFLAGS` are not necessary so LDFLAGS can be adjusted via command line: LDFLAGS="..." ./configure Co-authored-by: Max Kellermann <max.kellermann@ionos.com>
1 parent 0733038 commit cf587c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,7 @@ if test "$ac_cv_lib_crypt_crypt" = "yes"; then
11981198
EXTRA_LIBS="-lcrypt $EXTRA_LIBS -lcrypt"
11991199
fi
12001200

1201-
unset LIBS LDFLAGS
1201+
unset LIBS
12021202

12031203
dnl PEAR
12041204
dnl ----------------------------------------------------------------------------
@@ -1371,7 +1371,7 @@ if test "$abs_srcdir" != "$abs_builddir"; then
13711371
fi
13721372

13731373
ZEND_EXTRA_LIBS="$LIBS"
1374-
unset LIBS LDFLAGS
1374+
unset LIBS
13751375

13761376
PHP_HELP_SEPARATOR([TSRM:])
13771377
PHP_CONFIGURE_PART(Configuring TSRM)

0 commit comments

Comments
 (0)