diff options
author | dholland <dholland> | 2013-04-14 05:22:34 +0000 |
---|---|---|
committer | dholland <dholland> | 2013-04-14 05:22:34 +0000 |
commit | 2b386165df2ff24ebd246879d6e93925838ab9c0 (patch) | |
tree | b590c467cfef6dcc0cdefea0278b39d65a519149 /games | |
parent | f49251ed141272767b267385f6cc0b37aaf86f85 (diff) | |
download | pkgsrc-2b386165df2ff24ebd246879d6e93925838ab9c0.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/Makefile | 9 |
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 \ |