From da723c733f2bca4bf597f7b8f00f48d80cf614b6 Mon Sep 17 00:00:00 2001 From: cgd Date: Mon, 2 Oct 2000 19:57:23 +0000 Subject: [PATCH] include copyright notice in binary even if bootstrapping. --- usr.sbin/config/main.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/usr.sbin/config/main.c b/usr.sbin/config/main.c index 20d580f8c3d0..97a5296213e2 100644 --- a/usr.sbin/config/main.c +++ b/usr.sbin/config/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.48 2000/10/02 19:48:34 cgd Exp $ */ +/* $NetBSD: main.c,v 1.49 2000/10/02 19:57:23 cgd Exp $ */ /* * Copyright (c) 1992, 1993 @@ -44,12 +44,16 @@ * from: @(#)main.c 8.1 (Berkeley) 6/6/93 */ -#ifndef lint #ifndef MAKE_BOOTSTRAP #include -__COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\ +#define COPYRIGHT(x) __COPYRIGHT(x) +#else +#define COPYRIGHT(x) static const char copyright[] = x +#endif + +#ifndef lint +COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\ The Regents of the University of California. All rights reserved.\n"); -#endif /* not MAKE_BOOTSTRAP */ #endif /* not lint */ #include