diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2002-08-11 15:36:47 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2002-08-11 15:36:47 +0000 |
commit | 08fd7b8e5a589076677b26026360cc25a58c1f22 (patch) | |
tree | 1cc8a36ceed5755d8f6676ce1386f9e94f86c889 /editors/openoffice | |
parent | 54801c4c692d90734299e2fb1c200ccea82352b4 (diff) | |
download | ports-08fd7b8e5a589076677b26026360cc25a58c1f22.tar.gz ports-08fd7b8e5a589076677b26026360cc25a58c1f22.zip |
Undef TOP, if it was defined previously.
Tested by: Andreas Klemm <andreas@klemm.gtn.com>
Notes
Notes:
svn path=/head/; revision=64376
Diffstat (limited to 'editors/openoffice')
-rw-r--r-- | editors/openoffice/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/openoffice/Makefile b/editors/openoffice/Makefile index 522459efb359..64e029b3c4c6 100644 --- a/editors/openoffice/Makefile +++ b/editors/openoffice/Makefile @@ -335,16 +335,16 @@ do-build: @cd ${WRKSRC}/.. && PATH="${PATH}:${LOCALBASE}/bin:${LOCALBASE}/sbin" ./bootstrap .if !defined(DISPLAY) @cd ${WRKSRC}/.. && DISPLAY=${DISPLAYHACK} PATH="${PATH}:${LOCALBASE}/bin:${LOCALBASE}/sbin" && \ - tcsh -c 'source FreeBSDEnv.Set && ${DMAKE}' + tcsh -c 'source FreeBSDEnv.Set && unsetenv TOP && ${DMAKE}' @${CAT} ${WRKDIR}/.Xvfb.pid | xargs kill @${RM} -f ${WRKDIR}/.Xvfb.pid .else @cd ${WRKSRC}/.. && DISPLAY=${DISPLAY} PATH="${PATH}:${LOCALBASE}/bin:${LOCALBASE}/sbin" && \ - tcsh -c 'source FreeBSDEnv.Set && ${DMAKE}' + tcsh -c 'source FreeBSDEnv.Set && unsetenv TOP && ${DMAKE}' .endif .if defined(LANG_PKGNAME) @cd ${WRKSRC}/.. && PATH="${PATH}:${LOCALBASE}/bin:${LOCALBASE}/sbin" && \ - tcsh -c 'source FreeBSDEnv.Set && cd instsetoo/util && ${DMAKE} LANGEXT=${LANGEXT}' + tcsh -c 'source FreeBSDEnv.Set && unsetenv TOP && cd instsetoo/util && ${DMAKE} LANGEXT=${LANGEXT}' .endif pre-install: |