summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2013-04-14 05:22:34 +0000
committerdholland <dholland@pkgsrc.org>2013-04-14 05:22:34 +0000
commitda6ea0e645bd15c8a792ffccc963e15b45320e8f (patch)
treeb590c467cfef6dcc0cdefea0278b39d65a519149 /games
parentc0a62f4ffc6f75491e241f89d20e40faa21ac5b6 (diff)
downloadpkgsrc-da6ea0e645bd15c8a792ffccc963e15b45320e8f.tar.gz
Use ${SH} to run the build shellscript. Otherwise on Solaris it runs
a useless shell and fails miserably.
Diffstat (limited to 'games')
-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 \