summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortnn <tnn>2015-04-22 19:58:26 +0000
committertnn <tnn>2015-04-22 19:58:26 +0000
commitcac60a386d2261dce5d668a58ffd0d989bb73b04 (patch)
tree0438909bb873f53bf23564b52682236a86cb7a26
parent84e096f4a86e0eec99ff0fdeb35167fbc1f378c1 (diff)
downloadpkgsrc-cac60a386d2261dce5d668a58ffd0d989bb73b04.tar.gz
fix typo: emprty -> empty in an if statement.
NB: this may cause fallout on some GCC versions. In such event they should be added to the pattern.
-rw-r--r--net/libsoup24/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/libsoup24/Makefile b/net/libsoup24/Makefile
index ffc88f05c6f..01bdb6faf17 100644
--- a/net/libsoup24/Makefile
+++ b/net/libsoup24/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.66 2015/04/06 08:17:16 adam Exp $
+# $NetBSD: Makefile,v 1.67 2015/04/22 19:58:26 tnn Exp $
DISTNAME= libsoup-2.48.1
PKGNAME= ${DISTNAME:S/libsoup/libsoup24/}
@@ -31,7 +31,7 @@ TEST_TARGET= check
.include "../../mk/compiler.mk"
.if !empty(CC_VERSION:Mgcc-4.[01].*) || !empty(CC_VERSION:Mgcc-[1-3].*)
CONFIGURE_ARGS+= --disable-more-warnings
-.elif !emptry(CC_VERSION:Mgcc-4.[8].*)
+.elif !empty(CC_VERSION:Mgcc-4.[8].*)
_WRAP_EXTRA_ARGS.CC+= -Wno-error=format-zero-length
CWRAPPERS_APPEND.cc+= -Wno-error=format-zero-length
.endif