diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-08-23 02:46:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-08-23 02:46:10 +0000 |
commit | 298a157b062ef7a27bbe22fcc687faeeda7f1475 (patch) | |
tree | 5c7c89b2e50659b8bf2220fe5c72b6c4164afe8d /games | |
parent | e0f2f4ac4f472b08bc8dd33f37c6d4489d5a026f (diff) |
must use sh to run the script, because /usr/src may be noexec
Diffstat (limited to 'games')
-rw-r--r-- | games/quiz/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/quiz/Makefile b/games/quiz/Makefile index 75a9ba24566..6a6d948c057 100644 --- a/games/quiz/Makefile +++ b/games/quiz/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2024/08/22 04:34:19 mglocker Exp $ +# $OpenBSD: Makefile,v 1.8 2024/08/23 02:46:09 deraadt Exp $ PROG= quiz MAN= quiz.6 @@ -12,7 +12,7 @@ NAPHONE= ${.CURDIR}/../../share/misc/na.phone CLEANFILES+= areas areas: ${NAPHONE} - ${.CURDIR}/naphone2areas.sh ${NAPHONE} > areas + sh ${.CURDIR}/naphone2areas.sh ${NAPHONE} > areas afterinstall: areas (cd ${.CURDIR}/datfiles; ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} \ |