diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-28 13:52:51 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-28 13:52:51 +0000 |
commit | 963919bf73d50b1ad09fe3d7cfab137168ff16f2 (patch) | |
tree | 31c9fa14bf4284b60f0b28befab7cae83729a44d | |
parent | [patch] fix possible error in /usr/ports/MOVED (diff) |
Make sure the port can find all libraries even if LOCALBASE isn't
set in the environment.
Submitted by: Stefan Farfeleder
Notes
Notes:
svn path=/head/; revision=89682
-rw-r--r-- | games/uqm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/uqm/Makefile b/games/uqm/Makefile index a2e4735283b8..d31fd49df4e7 100644 --- a/games/uqm/Makefile +++ b/games/uqm/Makefile @@ -30,7 +30,7 @@ post-extract: ${CP} ${DISTDIR}/${PORTNAME}-${PORTVERSION}-content.zip ${WRKSRC}/content/packages/ do-configure: - cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} ./build.sh uqm config + cd ${WRKSRC} && ${SETENV} LOCALBASE=${LOCALBASE} PREFIX=${PREFIX} ./build.sh uqm config do-build: cd ${WRKSRC} && ./build.sh uqm |