diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-06-16 12:52:01 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-06-16 12:52:01 +0000 |
commit | 95e61ee2b58fa000d8b7aa25fef56ebb5e542e13 (patch) | |
tree | 56715ae60772c2b2dd1721b6cca901c81859a4d8 /net/ntp-stable | |
parent | 75e6cf4b9cf15026623ae6851883b5d311ec3fb5 (diff) | |
download | FreeBSD-ports-95e61ee2b58fa000d8b7aa25fef56ebb5e542e13.zip FreeBSD-ports-95e61ee2b58fa000d8b7aa25fef56ebb5e542e13.tar.gz |
Don't use command like the following "tar --exclude ".*" -cf foo.bar ."
because `.' itself gets excluded and therefore no files are added into
arcive. This should unbreak package on -current with new tar.
Reported by: kris
Diffstat (limited to 'net/ntp-stable')
-rw-r--r-- | net/ntp-stable/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ntp-stable/Makefile b/net/ntp-stable/Makefile index 8de6341..2465ba3 100644 --- a/net/ntp-stable/Makefile +++ b/net/ntp-stable/Makefile @@ -30,7 +30,7 @@ CONFIGURE_ARGS+= --enable-RAWDCF post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/ntp - ${TAR} -C ${WRKSRC}/html --exclude '.*' -cf - . | \ + ${TAR} -C ${WRKSRC}/html -cf - . | \ ${TAR} -C ${PREFIX}/share/doc/ntp --unlink -xf - find ${PREFIX}/share/doc/ntp | xargs ${CHOWN} ${SHAREOWN}:${SHAREGRP} find ${PREFIX}/share/doc/ntp -type f | xargs ${CHMOD} ${SHAREMODE} |