summaryrefslogtreecommitdiff
path: root/editors/emacs22/Makefile
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2011-07-20 23:29:27 +0000
committertron <tron@pkgsrc.org>2011-07-20 23:29:27 +0000
commitd2551b924574b287e92420a0094e863cdbbbd703 (patch)
tree316e10b54ef9abd564319f0a76a0f5fc390ebd36 /editors/emacs22/Makefile
parent4be0eacef0a3c51e65700f9a52f540226385c60c (diff)
downloadpkgsrc-d2551b924574b287e92420a0094e863cdbbbd703.tar.gz
Fix typo in last commit which NetBSD-current's make(1) silently ignored.
Diffstat (limited to 'editors/emacs22/Makefile')
-rw-r--r--editors/emacs22/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/emacs22/Makefile b/editors/emacs22/Makefile
index 513369b73f5..997dd630bfa 100644
--- a/editors/emacs22/Makefile
+++ b/editors/emacs22/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.14 2011/07/20 23:24:05 tron Exp $
+# $NetBSD: Makefile,v 1.15 2011/07/20 23:29:27 tron Exp $
PKGNAME?= ${DISTNAME}
COMMENT?= GNU editing macros (editor)
@@ -64,7 +64,7 @@ CPPFLAGS+= -DDFLY_CRT_USRLIB
# "emacs" uses the C pre-processor to generate makefiles. The C pre-processor
# of newer GCC version is designed to break this by purpose. We work around
# that using the traditional mode to generate makefiles.
-.if !emtpy(CC_VERSION:Mgcc-[4-9].*)
+.if !empty(CC_VERSION:Mgcc-[4-9].*)
CPP+= -traditional
CONFIGURE_ENV+= CPP=${CPP:Q}
.endif