Module Name:    src
Committed By:   kre
Date:           Sat Jul 23 06:48:27 UTC 2016

Modified Files:
        src/etc: MAKEDEV.tmpl

Log Message:
Always define MKNOD, even if we don't think we need it (turns out we do,
sometimes...)   Noticed by Michael Plass reported on current-users.


To generate a diff of this commit:
cvs rdiff -u -r1.181 -r1.182 src/etc/MAKEDEV.tmpl

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

Modified files:

Index: src/etc/MAKEDEV.tmpl
diff -u src/etc/MAKEDEV.tmpl:1.181 src/etc/MAKEDEV.tmpl:1.182
--- src/etc/MAKEDEV.tmpl:1.181	Thu Jun 16 15:33:38 2016
+++ src/etc/MAKEDEV.tmpl	Sat Jul 23 06:48:27 2016
@@ -1,5 +1,5 @@
 #!/bin/sh -
-#	$NetBSD: MAKEDEV.tmpl,v 1.181 2016/06/16 15:33:38 kre Exp $
+#	$NetBSD: MAKEDEV.tmpl,v 1.182 2016/07/23 06:48:27 kre Exp $
 #
 # Copyright (c) 2003,2007,2008 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -588,8 +588,8 @@ setup()
 	esac
 
 	# If we are using mknod, then decide what options to pass it.
+	MKNOD="${TOOL_MKNOD:-mknod} -F netbsd"
 	if $do_mknod; then
-		MKNOD="${TOOL_MKNOD:-mknod} -F netbsd"
 		if $do_force; then
 			MKNOD="${MKNOD} -R"
 		else

Reply via email to