diff options
author | flz <flz@FreeBSD.org> | 2006-07-29 07:06:19 +0800 |
---|---|---|
committer | flz <flz@FreeBSD.org> | 2006-07-29 07:06:19 +0800 |
commit | df8450b0e2e2f65620118e1b058c5223c805f4cf (patch) | |
tree | f3c02544028eb6798602701b21a72a68741ac3cd /astro/google-earth | |
parent | 85e18d0701f58efea99d055bda0325bf11bf0fe3 (diff) | |
download | freebsd-ports-gnome-df8450b0e2e2f65620118e1b058c5223c805f4cf.tar.gz freebsd-ports-gnome-df8450b0e2e2f65620118e1b058c5223c805f4cf.tar.zst freebsd-ports-gnome-df8450b0e2e2f65620118e1b058c5223c805f4cf.zip |
Replace ENV with SETENV as it's not defined in bsd.port.mk.
This should fix the "/home/foo/.shrc: Permission denied" error.
Reported by: John E Hein <jhein@timing.com>
Diffstat (limited to 'astro/google-earth')
-rw-r--r-- | astro/google-earth/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astro/google-earth/Makefile b/astro/google-earth/Makefile index c1267522448c..19c2495024be 100644 --- a/astro/google-earth/Makefile +++ b/astro/google-earth/Makefile @@ -60,7 +60,7 @@ do-build: @${REINPLACE_CMD} -i "" -e 's/^TMPPATH.*/exit 0/' ${WRKSRC}/postinstall.sh @${REINPLACE_CMD} -i "" -e 's|\"\$$SETUP_INSTALLPATH/|\"${WRKSRC}/|' ${WRKSRC}/postinstall.sh @${REINPLACE_CMD} -i "" -e 's|\$$SETUP_INSTALLPATH/googleearth |${PREFIX}/bin/googleearth |' ${WRKSRC}/postinstall.sh - @${ENV} SETUP_INSTALLPATH=${DATADIR} ${WRKSRC}/postinstall.sh + @${SETENV} SETUP_INSTALLPATH=${DATADIR} ${WRKSRC}/postinstall.sh @cd ${WRKSRC} && ${RM} -rf setup.* preuninstall.sh postinstall.sh @${CHOWN} -R ${SHAREDOWN}:${SHAREDGRP} ${WRKSRC} |