summaryrefslogtreecommitdiff
path: root/games/uqm
diff options
context:
space:
mode:
authordholland <dholland>2013-04-14 05:22:34 +0000
committerdholland <dholland>2013-04-14 05:22:34 +0000
commit38e0a6feed60f03bfce1bdfb31147da4187a2341 (patch)
treeb590c467cfef6dcc0cdefea0278b39d65a519149 /games/uqm
parent65219f94c121ce0ee7e7db621a3df3a30ba6ab31 (diff)
downloadpkgsrc-38e0a6feed60f03bfce1bdfb31147da4187a2341.tar.gz
Use ${SH} to run the build shellscript. Otherwise on Solaris it runs
a useless shell and fails miserably.
Diffstat (limited to 'games/uqm')
-rw-r--r--games/uqm/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/games/uqm/Makefile b/games/uqm/Makefile
index 80311884c2f..13e005b0f85 100644
--- a/games/uqm/Makefile
+++ b/games/uqm/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2013/01/05 22:19:19 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2013/04/14 05:22:34 dholland Exp $
#
DISTNAME= uqm-0.7.0-source
@@ -49,13 +49,14 @@ SUBST_SED.config+= -e 's;/usr/local/games;${PREFIX};'
INSTALLATION_DIRS= bin lib/uqm share/uqm/content/packages share/doc/uqm
do-configure:
- cd ${WRKSRC} && ./build.sh uqm config
+ cd ${WRKSRC} && ${SH} ./build.sh uqm config
do-build:
- cd ${WRKSRC} && ./build.sh uqm reprocess_config && ./build.sh uqm
+ cd ${WRKSRC} && ${SH} ./build.sh uqm reprocess_config && \
+ ${SH} ./build.sh uqm
do-install:
- cd ${WRKSRC} && env DESTDIR=${DESTDIR} ./build.sh uqm install
+ cd ${WRKSRC} && env DESTDIR=${DESTDIR} ${SH} ./build.sh uqm install
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/uqm-0.7.0-content.uqm \
${DESTDIR}${PREFIX}/share/uqm/content/packages
${INSTALL_DATA} ${WRKSRC}/doc/users/manual.txt \