summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2013-10-12 17:16:54 +0000
committertron <tron@pkgsrc.org>2013-10-12 17:16:54 +0000
commit0a92126cbd185e9d42d8ff6b217a9dcccedff7c2 (patch)
tree0d6fcbc1e6bce7eb802b7a879d7bb239109765cf
parent3aea3666bc6f6f714f9b7b14c43d18969bbe1ffb (diff)
downloadpkgsrc-0a92126cbd185e9d42d8ff6b217a9dcccedff7c2.tar.gz
Use "if empty()" instead of comparing with an empty string.
-rw-r--r--archivers/mousetar/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/mousetar/Makefile b/archivers/mousetar/Makefile
index a17fddb4b36..1c9baa90160 100644
--- a/archivers/mousetar/Makefile
+++ b/archivers/mousetar/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.22 2013/04/06 03:45:06 rodent Exp $
+# $NetBSD: Makefile,v 1.23 2013/10/12 17:16:54 tron Exp $
#
DISTNAME= mousetar-20021217
@@ -23,7 +23,7 @@ CPPFLAGS+= -DDIRENT_FIXUP
CPPFLAGS.SunOS+= -DTAR_INODE_NONE -DLINUX_NAMLEN
CPPFLAGS.SunOS+= -DL_SET=SEEK_SET -DL_INCR=SEEK_CUR -DL_XTND=SEEK_END
-.if ${MACHINE_PLATFORM:MNetBSD-[2-9].*-*} != ""
+.if !empty(MACHINE_PLATFORM:MNetBSD-[2-9].*-*)
CPPFLAGS+= -DTAR_INODE_INTERNAL
.endif