Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/etc Always define MKNOD, even if we don't think we need it (...



details:   https://anonhg.NetBSD.org/src/rev/3c3e4073df59
branches:  trunk
changeset: 346627:3c3e4073df59
user:      kre <kre%NetBSD.org@localhost>
date:      Sat Jul 23 06:48:27 2016 +0000

description:
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.

diffstat:

 etc/MAKEDEV.tmpl |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 6d0da7d2b7b1 -r 3c3e4073df59 etc/MAKEDEV.tmpl
--- a/etc/MAKEDEV.tmpl  Sat Jul 23 01:38:35 2016 +0000
+++ b/etc/MAKEDEV.tmpl  Sat Jul 23 06:48:27 2016 +0000
@@ -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 @@
        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



Home | Main Index | Thread Index | Old Index