1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-29 16:44:03 +00:00

Make this work with missing dirs.

Submitted by:	jkh
This commit is contained in:
Jordan K. Hubbard 1994-09-08 04:17:57 +00:00
parent d0a05ae033
commit bc8561e982
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2566

View File

@ -10,6 +10,9 @@ CATS= africa america areas arith asia babies bard chinese collectives \
HIDEGAME=hidegame
beforeinstall:
@if [ ! -d ${DESTDIR}/usr/share/games/quiz.db ]; then \
mkdir -p ${DESTDIR}/usr/share/games/quiz.db; \
fi
(cd ${.CURDIR}/datfiles; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${CATS} ${DESTDIR}/usr/share/games/quiz.db)