Module Name:    src
Committed By:   matt
Date:           Fri May  3 15:55:22 UTC 2013

Modified Files:
        src/share/mk: bsd.own.mk

Log Message:
Use !empty(MACHINE_ARCH:Mearm*) instead of ${MACHINE_ARCH:Mearm*} != ""


To generate a diff of this commit:
cvs rdiff -u -r1.728 -r1.729 src/share/mk/bsd.own.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.728 src/share/mk/bsd.own.mk:1.729
--- src/share/mk/bsd.own.mk:1.728	Sun Apr 28 04:05:41 2013
+++ src/share/mk/bsd.own.mk	Fri May  3 15:55:21 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: bsd.own.mk,v 1.728 2013/04/28 04:05:41 joerg Exp $
+#	$NetBSD: bsd.own.mk,v 1.729 2013/05/03 15:55:21 matt Exp $
 
 # This needs to be before bsd.init.mk
 .if defined(BSD_MK_COMPAT_FILE)
@@ -702,7 +702,7 @@ MACHINE_GNU_ARCH=${GNU_ARCH.${MACHINE_AR
 # In order to identify NetBSD to GNU packages, we sometimes need
 # an "elf" tag for historically a.out platforms.
 #
-.if (${MACHINE_ARCH:Mearm*} != "")
+.if (!empty(MACHINE_ARCH:Mearm*))
 MACHINE_GNU_PLATFORM?=${MACHINE_GNU_ARCH}--netbsdelf-${MACHINE_ARCH:C/eb//:S/earm/eabi/}
 .elif (${MACHINE_GNU_ARCH} == "arm" || \
      ${MACHINE_GNU_ARCH} == "armeb" || \

Reply via email to