diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2002-01-16 19:50:07 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2002-01-16 19:50:07 +0000 |
commit | e9adff67cd25c458e9a5fab9add5b916003cf808 (patch) | |
tree | 5b0963abadc497ec680ea7359de3bc8a2021d93a /emulators/atari800 | |
parent | c511169aa8f6051c54113e134c0c312235925249 (diff) | |
download | pkgsrc-e9adff67cd25c458e9a5fab9add5b916003cf808.tar.gz |
make sure HOME is overridded during a build to avoid looking for . files
in the users home directory.
Diffstat (limited to 'emulators/atari800')
-rw-r--r-- | emulators/atari800/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/atari800/Makefile b/emulators/atari800/Makefile index a4a605963e5..650d3b04184 100644 --- a/emulators/atari800/Makefile +++ b/emulators/atari800/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2001/09/27 23:18:02 jlam Exp $ +# $NetBSD: Makefile,v 1.12 2002/01/16 19:50:07 dmcmahill Exp $ DISTNAME= Atari800-0.9.9a PKGNAME= atari800-0.9.9a @@ -24,7 +24,7 @@ EXTRACT_CMD= unzip -Loq ${DOWNLOADED_DISTFILE} MAKE_FLAGS= LDFLAGS="${LDFLAGS} -L${X11BASE}/lib" OBJ="atari_x11.o" \ CFLAGS="-c ${CFLAGS} -DPREFIX=\\\"${PREFIX}\\\"" #override HOME to avoid picking up a bad ${HOME}/.atari800 during the build -MAKE_ENV+= HOME=${WRKSRC} +MAKE_FLAGS+= HOME=${WRKSRC} post-extract: @${FIND} ${WRKDIR} -type f -print | ${XARGS} ${CHMOD} 0644 |