diff options
author | asami <asami@FreeBSD.org> | 1998-11-16 14:28:41 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-16 14:28:41 +0800 |
commit | 6afb3a5afa187b2df2ca56b1e4a109bc3f4c40f2 (patch) | |
tree | f91a3f2da01db23bb3b8558e1055dcb348136c76 /java/jdk11 | |
parent | 357fe595525982bdb89e49eac9942f2ecd338e4e (diff) | |
download | freebsd-ports-gnome-6afb3a5afa187b2df2ca56b1e4a109bc3f4c40f2.tar.gz freebsd-ports-gnome-6afb3a5afa187b2df2ca56b1e4a109bc3f4c40f2.tar.zst freebsd-ports-gnome-6afb3a5afa187b2df2ca56b1e4a109bc3f4c40f2.zip |
Make this package by removing the --exclude option to tar. I'm assuming this
is what Nate intended because all the *.class files are listed in pkg/PLIST.
If it's the other way around, go ahead and revert it (and fix PLIST), Nate.
Diffstat (limited to 'java/jdk11')
-rw-r--r-- | java/jdk11/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/jdk11/Makefile b/java/jdk11/Makefile index 8060c133338f..91388cb0b295 100644 --- a/java/jdk11/Makefile +++ b/java/jdk11/Makefile @@ -3,7 +3,7 @@ # Date created: Feb, 8, 1998 # Whom: Nate Williams <nate@FReeBSD.org> # -# $Id: Makefile,v 1.14 1998/08/19 14:56:37 nate Exp $ +# $Id: Makefile,v 1.15 1998/11/14 17:35:33 nate Exp $ # DISTNAME= jdk1.1.7.V98-11-5 @@ -21,7 +21,7 @@ NO_BUILD= yes do-install: ${MKDIR} ${PREFIX}/jdk1.1.7 - (cd ${WRKSRC} && tar -c -f - --exclude '*.class' .) \ + (cd ${WRKSRC} && tar -c -f - .) \ | (cd ${PREFIX}/jdk1.1.7 && tar fx -) .include <bsd.port.mk> |