mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
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
This commit is contained in:
parent
4b3b7f15da
commit
2c1ac82421
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=61365
@ -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}
|
||||
|
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user