From: Sascha Wildner Date: Mon, 23 May 2011 11:00:41 +0000 (+0200) Subject: mail(1) & battlestar(6): Rename some files. X-Git-Tag: v2.12.0~574 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/937f07e069e150b93cfed49b0def7a66b9344abe 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 --- 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