Module Name:    src
Committed By:   uebayasi
Date:           Sat Apr  6 13:00:31 UTC 2013

Modified Files:
        src/etc: Makefile

Log Message:
Don't print warning even if mkisofs is not found.


To generate a diff of this commit:
cvs rdiff -u -r1.406 -r1.407 src/etc/Makefile

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

Modified files:

Index: src/etc/Makefile
diff -u src/etc/Makefile:1.406 src/etc/Makefile:1.407
--- src/etc/Makefile:1.406	Sun Feb 24 03:06:13 2013
+++ src/etc/Makefile	Sat Apr  6 13:00:31 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.406 2013/02/24 03:06:13 jmmv Exp $
+#	$NetBSD: Makefile,v 1.407 2013/04/06 13:00:31 uebayasi Exp $
 #	from: @(#)Makefile	8.7 (Berkeley) 5/25/95
 
 # Environment variables without default values:
@@ -53,7 +53,7 @@ DISTRIBVER!=	${HOST_SH} ${NETBSDSRCDIR}/
 # Note: At least mkisofs 2.0 should be used.
 #
 .if !defined(MKISOFS)
-MKISOFS!=       (which mkisofs || echo true)
+MKISOFS!=       (which mkisofs || echo true) 2>/dev/null
 .endif
 DISTRIBREV!=	${HOST_SH} ${KERNSRCDIR}/conf/osrelease.sh -s
 # ISO 9660 volume ID.  Note that this can only contain [A-Z0-9_].

Reply via email to