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 05b18efb7ba4b3d17ed4b4f46525768477630016)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Peter Korsgaard 2024-09-10 09:08:08 +02:00
parent c09e6dd0ff
commit 6791f8c9ff
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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