Module Name:    src
Committed By:   christos
Date:           Mon Oct 28 22:52:43 UTC 2019

Modified Files:
        src/sbin/fsck_ffs: Makefile.common
        src/sbin/fsdb: Makefile

Log Message:
inode.c needs -O0 for vax


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sbin/fsck_ffs/Makefile.common
cvs rdiff -u -r1.38 -r1.39 src/sbin/fsdb/Makefile

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

Modified files:

Index: src/sbin/fsck_ffs/Makefile.common
diff -u src/sbin/fsck_ffs/Makefile.common:1.1 src/sbin/fsck_ffs/Makefile.common:1.2
--- src/sbin/fsck_ffs/Makefile.common:1.1	Wed Feb  8 11:11:40 2017
+++ src/sbin/fsck_ffs/Makefile.common	Mon Oct 28 18:52:43 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.common,v 1.1 2017/02/08 16:11:40 rin Exp $
+#	$NetBSD: Makefile.common,v 1.2 2019/10/28 22:52:43 christos Exp $
 #	@(#)Makefile	8.2 (Berkeley) 4/27/95
 
 # shared stuff with src/distrib/utils/x_newfs for install media.
@@ -38,4 +38,5 @@ COPTS.pass1.c+=	-fno-tree-fre -fno-tree-
 .endif
 .if ${MACHINE_ARCH} == "vax"
 COPTS.pass1.c+=	-O0
+COPTS.inode.c+=	-O0
 .endif

Index: src/sbin/fsdb/Makefile
diff -u src/sbin/fsdb/Makefile:1.38 src/sbin/fsdb/Makefile:1.39
--- src/sbin/fsdb/Makefile:1.38	Wed Mar 23 17:43:33 2016
+++ src/sbin/fsdb/Makefile	Mon Oct 28 18:52:43 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.38 2016/03/23 21:43:33 christos Exp $
+#	$NetBSD: Makefile,v 1.39 2019/10/28 22:52:43 christos Exp $
 #	@(#)Makefile	8.1 (Berkeley) 6/5/93
 
 .include <bsd.own.mk>
@@ -41,6 +41,7 @@ COPTS.pass1.c+=	-fno-tree-fre -fno-tree-
 
 .if ${MACHINE_ARCH} == "vax"
 COPTS.pass1.c+=	-O0
+COPTS.inode.c+=	-O0
 .endif
 
 .include <bsd.prog.mk>

Reply via email to