mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
package/fcgiwrap: fix explicitly typo
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 05b18efb7b)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
Makefile.in: Use LIBS from configure rather than specifying -lfcgi manually.
|
||||
|
||||
libfcgi needs libm and fcgiwrap does not use libtool or pkgconf to
|
||||
detect libfcgi, so we need to add -lm explicitely when using static
|
||||
detect libfcgi, so we need to add -lm explicitly when using static
|
||||
libs. Buildroot does this by providing LIBS=-lm to configure when
|
||||
needed. However fcgiwrap does not use Automake and its Makefile.in
|
||||
ignores LIBS from configure. Fix it with this patch.
|
||||
|
||||
@@ -20,7 +20,7 @@ FCGIWRAP_CONF_OPTS += --without-systemd
|
||||
endif
|
||||
|
||||
# libfcgi needs libm and fcgiwrap does not use libtool or pkgconf to
|
||||
# detect libfcgi, so we need to add -lm explicitely when using static
|
||||
# detect libfcgi, so we need to add -lm explicitly when using static
|
||||
# libs.
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
FCGIWRAP_CONF_OPTS += LIBS=-lm
|
||||
|
||||
Reference in New Issue
Block a user