浏览代码

package/fcgiwrap: fix explicitly typo

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Peter Korsgaard 11 月之前
父节点
当前提交
05b18efb7b
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      package/fcgiwrap/0001-use-LIBS-from-configure.patch
  2. 1 1
      package/fcgiwrap/fcgiwrap.mk

+ 1 - 1
package/fcgiwrap/0001-use-LIBS-from-configure.patch

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

+ 1 - 1
package/fcgiwrap/fcgiwrap.mk

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