diff options
author | beat <beat@FreeBSD.org> | 2010-01-22 04:26:16 +0800 |
---|---|---|
committer | beat <beat@FreeBSD.org> | 2010-01-22 04:26:16 +0800 |
commit | f11292f9e185303040cd3e0ee781659f214f2fc0 (patch) | |
tree | 20e584b3fd014408636959e975ca958f2bb160a1 | |
parent | 70e76278a00b4a51407ff9b4fdf75066aa432d05 (diff) | |
download | freebsd-ports-gnome-f11292f9e185303040cd3e0ee781659f214f2fc0.tar.gz freebsd-ports-gnome-f11292f9e185303040cd3e0ee781659f214f2fc0.tar.zst freebsd-ports-gnome-f11292f9e185303040cd3e0ee781659f214f2fc0.zip |
- Fix installation of ports where MOZSRC is not the same directory as
WRKSRC (like www/seamonkey2 and mail/thunderbird3).
-rw-r--r-- | Mk/bsd.gecko.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index 725b52806321..5c0553e84841 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -561,7 +561,7 @@ gecko-pre-install: .if !defined(NOGECKO_PLIST) @${RM} -rf ${FAKEDIR} ${PLIST} ${PLISTD} ${PLISTF} @${TOUCH} -f ${PLIST} ${PLISTD} ${PLISTF} - @cd ${MOZSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ ${MAKEFILE} ${MAKE_ARGS} prefix=${FAKEDIR} ${INSTALL_TARGET} .if defined(MOZILLA_SUFX) && ${MOZILLA_SUFX}!="none" ${MV} ${FAKEDIR}/bin/${MOZILLA:S/${MOZILLA_SUFX}//} ${FAKEDIR}/bin/${MOZILLA} |