summaryrefslogtreecommitdiff
path: root/x11-fonts
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1995-04-01 14:54:57 +0000
committerSatoshi Asami <asami@FreeBSD.org>1995-04-01 14:54:57 +0000
commit67f2972939f45f5659e5ce16d8a82e82e5aad858 (patch)
treeddbd8b84faf111aa039faf2b22554697299dcbef /x11-fonts
parentClaim my ports, and add the MAINTAINER entry. (diff)
Pipe output of tar to "gzip --best" to ensure we get the exact same
tar.gz file every time.
Notes
Notes: svn path=/head/; revision=1271
Diffstat (limited to 'x11-fonts')
-rw-r--r--x11-fonts/xfed/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/x11-fonts/xfed/Makefile b/x11-fonts/xfed/Makefile
index e8c97e967dbd..04af9f1ca326 100644
--- a/x11-fonts/xfed/Makefile
+++ b/x11-fonts/xfed/Makefile
@@ -3,7 +3,7 @@
# Date created: 7 December 1994
# Whom: asami
#
-# $Id: Makefile,v 1.5 1995/03/24 11:11:58 asami Exp $
+# $Id: Makefile,v 1.6 1995/04/01 12:51:21 jkh Exp $
#
USE_IMAKE= yes
@@ -33,7 +33,8 @@ fetch: pre-fetch
${NCFTP} ${NCFTPFLAGS} ${SOURCESITE}\{$$file\}); \
done; \
echo ">> Now creating a tarball ${DISTDIR}/${TARFILE}..."; \
- tar -C ${.CURDIR}/src -czf ${DISTDIR}/${TARFILE} xfed; \
+ tar -C ${.CURDIR}/src -cf - xfed | \
+ gzip --best > ${DISTDIR}/${TARFILE}; \
rm -rf ${.CURDIR}/src; \
fi
.endif