Subject: Re: CVS commit: src/etc
To: Julio M. Merino Vidal <jmmv@netbsd.org>
From: Geert Hendrickx <ghen@NetBSD.org>
List: source-changes
Date: 08/05/2006 18:16:09
On Sat, Aug 05, 2006 at 01:07:30PM +0000, Julio M. Merino Vidal wrote:
> When using a development version of the system (be it current, a beta or
> a release candidate), tell the user that he might expect problems and how
> to effectively report them to the developers.

> cvs rdiff -r1.333 -r1.334 src/etc/Makefile
--- src/etc/Makefile:1.333      Sun Jul 23 11:44:55 2006
+++ src/etc/Makefile    Sat Aug  5 13:07:30 2006
@@ -112,7 +112,18 @@
 .endif
 
 # -rw-rw-r--
+.if !empty(DISTRIBVER:M*.99.*)
+BIN2+= motd.current
+FILESNAME_motd.current=        motd
+.elif !empty(DISTRIBVER:M*BETA*)
+BIN2+= motd.beta
+FILESNAME_motd.beta=   motd
+.elif !empty(DISTRIBVER:M*RC*)
+BIN2+= motd.rc
+FILESNAME_motd.rc=     motd
+.else
 BIN2+= motd
+.endif
 
 # -rw-------
 BIN3+= hosts.equiv

Aren't the versions on a branch called *_STABLE instead of _BETA?  At least
here (on netbsd-3) I have: 

% uname -r 
3.0_STABLE

	Geert