diff options
author | mbr <mbr@FreeBSD.org> | 2002-08-11 23:36:47 +0800 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2002-08-11 23:36:47 +0800 |
commit | 9a8023c264aec70397d62310fecc08b2d8e93987 (patch) | |
tree | 56b8c8f82d84777ea1f7e4aed26f0e08c15a707d /editors/openoffice | |
parent | 8741b18dd824d3ddbbf1872541fa118da78d8d1b (diff) | |
download | freebsd-ports-gnome-9a8023c264aec70397d62310fecc08b2d8e93987.tar.gz freebsd-ports-gnome-9a8023c264aec70397d62310fecc08b2d8e93987.tar.zst freebsd-ports-gnome-9a8023c264aec70397d62310fecc08b2d8e93987.zip |
Undef TOP, if it was defined previously.
Tested by: Andreas Klemm <andreas@klemm.gtn.com>
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: |