diff options
author | Bill Fumerola <billf@FreeBSD.org> | 2000-02-07 20:12:07 +0000 |
---|---|---|
committer | Bill Fumerola <billf@FreeBSD.org> | 2000-02-07 20:12:07 +0000 |
commit | d626858c8c22c890f2ef5fb46133a1bf3991b8af (patch) | |
tree | 43d42c4ee3a36e9c9a96897a766b23826b96ee5b | |
parent | Nuke old tacacs+ port after new one has proven stability (diff) |
Use ${TAR} and the right arguments to it.
Submitted by: billf, des (respectivly)
Approved by: nate (maintainer)
Notes
Notes:
svn path=/head/; revision=25567
-rw-r--r-- | java/jdk/Makefile | 4 | ||||
-rw-r--r-- | java/jdk11/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/java/jdk/Makefile b/java/jdk/Makefile index aa7c1ddc6d83..130068296c09 100644 --- a/java/jdk/Makefile +++ b/java/jdk/Makefile @@ -32,7 +32,7 @@ DISTFILES= jdk${JDK_VERSION}_ELF.V1999-11-9.tar.gz do-install: ${MKDIR} ${PREFIX}/jdk${JDK_VERSION} - (cd ${WRKSRC} && tar -c -f - .) \ - | (cd ${PREFIX}/jdk${JDK_VERSION} && tar fx -) + (cd ${WRKSRC} && ${TAR} -c -f - .) \ + | (cd ${PREFIX}/jdk${JDK_VERSION} && ${TAR} --unlink -x -f -) .include <bsd.port.post.mk> diff --git a/java/jdk11/Makefile b/java/jdk11/Makefile index aa7c1ddc6d83..130068296c09 100644 --- a/java/jdk11/Makefile +++ b/java/jdk11/Makefile @@ -32,7 +32,7 @@ DISTFILES= jdk${JDK_VERSION}_ELF.V1999-11-9.tar.gz do-install: ${MKDIR} ${PREFIX}/jdk${JDK_VERSION} - (cd ${WRKSRC} && tar -c -f - .) \ - | (cd ${PREFIX}/jdk${JDK_VERSION} && tar fx -) + (cd ${WRKSRC} && ${TAR} -c -f - .) \ + | (cd ${PREFIX}/jdk${JDK_VERSION} && ${TAR} --unlink -x -f -) .include <bsd.port.post.mk> |