diff options
author | steve <steve@FreeBSD.org> | 1999-07-05 05:45:10 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-07-05 05:45:10 +0800 |
commit | 77a1de70f904c532c4147f561fa4cf9187a8eeb7 (patch) | |
tree | 5bedac904b64654c8ee2cc8cac4ce364256e4b56 /mail/xpbiff | |
parent | 413a74deb00b636159c33b3cdc45fa319edfa69d (diff) | |
download | freebsd-ports-gnome-77a1de70f904c532c4147f561fa4cf9187a8eeb7.tar.gz freebsd-ports-gnome-77a1de70f904c532c4147f561fa4cf9187a8eeb7.tar.zst freebsd-ports-gnome-77a1de70f904c532c4147f561fa4cf9187a8eeb7.zip |
Don't write to DISTDIR.
Diffstat (limited to 'mail/xpbiff')
-rw-r--r-- | mail/xpbiff/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mail/xpbiff/Makefile b/mail/xpbiff/Makefile index b2e2d309b12a..d09aea86f5c4 100644 --- a/mail/xpbiff/Makefile +++ b/mail/xpbiff/Makefile @@ -3,7 +3,7 @@ # Date created: 2 April 1997 # Whom: Yoshiro MIHIRA <sanpei@yy.cs.keio.ac.jp> # -# $Id: Makefile,v 1.4 1998/09/15 11:13:29 asami Exp $ +# $Id: Makefile,v 1.5 1998/09/17 00:32:46 asami Exp $ DISTNAME= xpbiff PKGNAME?= xpbiff-1.27 @@ -26,14 +26,14 @@ YOUBINBINDIR= ${LOCALBASE} .endif do-extract: - @(cd ${DISTDIR}; \ - if [ ! -f ${DISTNAME}.tar.gz ]; then \ - uudecode ${DISTFILES} ; \ - fi) @${RM} -rf ${WRKDIR} @${MKDIR} ${WRKDIR} - @(cd ${WRKDIR}; tar -xzf \ - ${DISTDIR}/${DISTNAME}.tar.gz) + @(cd ${WRKDIR}; \ + if [ ! -f ${DISTDIR}/${DISTNAME}.tar.gz ]; then \ + uudecode -p ${DISTDIR}/${DISTFILES} | tar xzf -; \ + else \ + tar xzf ${DISTDIR}/${DISTNAME}.tar.gz; \ + fi) pre-patch: @(${RM} -rf ${WRKSRC}/LocPixmap.c; \ |