diff options
author | billf <billf@FreeBSD.org> | 1999-12-10 21:13:42 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-12-10 21:13:42 +0000 |
commit | eeb2dbc8d87fc13f9b937f94fcc499f662567fee (patch) | |
tree | 335c4440861d51b2cd7adf6cd38eed83554f6262 /games/robots/Makefile | |
parent | da5ff8ce2a3b17bc02c075958b89e0fbb8f5b16b (diff) | |
download | FreeBSD-src-eeb2dbc8d87fc13f9b937f94fcc499f662567fee.zip FreeBSD-src-eeb2dbc8d87fc13f9b937f94fcc499f662567fee.tar.gz |
1. Don't overwrite scorefiles if they already exist.
PR: bin/13068
Submitted by: Dominic Mitchell <Dom.Mitchell@palmerharvey.co.uk>
2. Sprinkle $FreeBSD$ around.
Diffstat (limited to 'games/robots/Makefile')
-rw-r--r-- | games/robots/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/games/robots/Makefile b/games/robots/Makefile index 18503e0..6ef8d9c 100644 --- a/games/robots/Makefile +++ b/games/robots/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $FreeBSD$ PROG= robots CFLAGS+=-DMAX_PER_UID=5 @@ -10,7 +11,9 @@ LDADD= -lcurses -ltermcap -lcompat HIDEGAME=hidegame beforeinstall: +.if !exists(${DESTDIR}/var/games/robots_roll) ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \ ${DESTDIR}/var/games/robots_roll +.endif .include <bsd.prog.mk> |