From 937f07e069e150b93cfed49b0def7a66b9344abe Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Mon, 23 May 2011 13:00:41 +0200 Subject: [PATCH] mail(1) & battlestar(6): Rename some files. All these files had names which are reserved in Windows, which led to our tree being not correctly checked out to NTFS, for example. Reported-by: Adam Hoka --- games/battlestar/Makefile | 4 ++-- games/battlestar/{com1.c => command1.c} | 0 games/battlestar/{com2.c => command2.c} | 0 games/battlestar/{com3.c => command3.c} | 0 games/battlestar/{com4.c => command4.c} | 0 games/battlestar/{com5.c => command5.c} | 0 games/battlestar/{com6.c => command6.c} | 0 games/battlestar/{com7.c => command7.c} | 0 usr.bin/mail/Makefile | 5 ++--- usr.bin/mail/{aux.c => util.c} | 0 10 files changed, 4 insertions(+), 5 deletions(-) rename games/battlestar/{com1.c => command1.c} (100%) rename games/battlestar/{com2.c => command2.c} (100%) rename games/battlestar/{com3.c => command3.c} (100%) rename games/battlestar/{com4.c => command4.c} (100%) rename games/battlestar/{com5.c => command5.c} (100%) rename games/battlestar/{com6.c => command6.c} (100%) rename games/battlestar/{com7.c => command7.c} (100%) rename usr.bin/mail/{aux.c => util.c} (100%) diff --git a/games/battlestar/Makefile b/games/battlestar/Makefile index 4f5dc3dc06..8f5b1a19a3 100644 --- a/games/battlestar/Makefile +++ b/games/battlestar/Makefile @@ -1,9 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 # $FreeBSD: src/games/battlestar/Makefile,v 1.5.2.3 2002/08/07 16:31:41 ru Exp $ -# $DragonFly: src/games/battlestar/Makefile,v 1.4 2006/10/08 16:22:35 pavalos Exp $ PROG= battlestar -SRCS= battlestar.c com1.c com2.c com3.c com4.c com5.c com6.c com7.c \ +SRCS= battlestar.c command1.c command2.c command3.c command4.c \ + command5.c command6.c command7.c \ init.c cypher.c getcom.c parse.c room.c save.c fly.c misc.c \ globals.c dayfile.c nightfile.c dayobjs.c nightobjs.c words.c MAN= battlestar.6 diff --git a/games/battlestar/com1.c b/games/battlestar/command1.c similarity index 100% rename from games/battlestar/com1.c rename to games/battlestar/command1.c diff --git a/games/battlestar/com2.c b/games/battlestar/command2.c similarity index 100% rename from games/battlestar/com2.c rename to games/battlestar/command2.c diff --git a/games/battlestar/com3.c b/games/battlestar/command3.c similarity index 100% rename from games/battlestar/com3.c rename to games/battlestar/command3.c diff --git a/games/battlestar/com4.c b/games/battlestar/command4.c similarity index 100% rename from games/battlestar/com4.c rename to games/battlestar/command4.c diff --git a/games/battlestar/com5.c b/games/battlestar/command5.c similarity index 100% rename from games/battlestar/com5.c rename to games/battlestar/command5.c diff --git a/games/battlestar/com6.c b/games/battlestar/command6.c similarity index 100% rename from games/battlestar/com6.c rename to games/battlestar/command6.c diff --git a/games/battlestar/com7.c b/games/battlestar/command7.c similarity index 100% rename from games/battlestar/com7.c rename to games/battlestar/command7.c diff --git a/usr.bin/mail/Makefile b/usr.bin/mail/Makefile index 53f50f8168..85d7c8be8e 100644 --- a/usr.bin/mail/Makefile +++ b/usr.bin/mail/Makefile @@ -1,11 +1,10 @@ # @(#)Makefile 8.2 (Berkeley) 1/25/94 # $FreeBSD: src/usr.bin/mail/Makefile,v 1.5.6.4 2002/08/07 16:32:01 ru Exp $ -# $DragonFly: src/usr.bin/mail/Makefile,v 1.3 2007/08/27 16:50:56 pavalos Exp $ PROG= mail -SRCS= version.c aux.c cmd1.c cmd2.c cmd3.c cmdtab.c collect.c edit.c fio.c \ +SRCS= version.c cmd1.c cmd2.c cmd3.c cmdtab.c collect.c edit.c fio.c \ getname.c head.c v7.local.c lex.c list.c main.c names.c popen.c \ - quit.c send.c strings.c temp.c tty.c vars.c + quit.c send.c strings.c temp.c tty.c util.c vars.c FILES= mail.help mail.tildehelp FILESDIR= ${SHAREDIR}/misc EFILES= mail.rc diff --git a/usr.bin/mail/aux.c b/usr.bin/mail/util.c similarity index 100% rename from usr.bin/mail/aux.c rename to usr.bin/mail/util.c -- 2.41.0