summaryrefslogtreecommitdiff
path: root/archivers/mousetar
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
commite3a8d8e3e48e1857c31f3b21c2a392f508110289 (patch)
tree0d6fcbc1e6bce7eb802b7a879d7bb239109765cf /archivers/mousetar
parent9afa7a94a467d0d42a5a6e1d66b12222d2ecee64 (diff)
downloadpkgsrc-e3a8d8e3e48e1857c31f3b21c2a392f508110289.tar.gz
Use "if empty()" instead of comparing with an empty string.
Diffstat (limited to 'archivers/mousetar')
-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