diff options
author | alane <alane@FreeBSD.org> | 2002-08-14 08:48:43 +0000 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-08-14 08:48:43 +0000 |
commit | 0d1de883aea3555ea5cec8cae62c06e8bf2f10cc (patch) | |
tree | 4d1ed4c7973b75973b49b5e2f9aa936103e4ab43 /databases | |
parent | 3265de091140bdf93f19b15155d2921f8b4628a8 (diff) | |
download | FreeBSD-ports-0d1de883aea3555ea5cec8cae62c06e8bf2f10cc.zip FreeBSD-ports-0d1de883aea3555ea5cec8cae62c06e8bf2f10cc.tar.gz |
Fix failure to build package due to apparent source tarball change. No idea
how long it's been broken. Maintainer email address bounces. Committing
w/o timeout because of package failure and upcoming 4.7 release.
PR: 41656
Diffstat (limited to 'databases')
-rw-r--r-- | databases/db/Makefile | 5 | ||||
-rw-r--r-- | databases/db2/Makefile | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/databases/db/Makefile b/databases/db/Makefile index 48c920e..2606604 100644 --- a/databases/db/Makefile +++ b/databases/db/Makefile @@ -23,10 +23,11 @@ CONFIGURE_ARGS= --enable-compat185 \ --enable-dump185 --enable-cxx post-install: + @-${RM} -fr ${PREFIX}/share/examples/db2 ${MKDIR} ${PREFIX}/share/examples/db2 cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) + tar -cf - --exclude tags examples/ examples_cxx/ examples_java/. \ + | ( cd ${PREFIX}/share/examples/db2; tar xf - ) @${ECHO_MSG} "" @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." diff --git a/databases/db2/Makefile b/databases/db2/Makefile index 48c920e..2606604 100644 --- a/databases/db2/Makefile +++ b/databases/db2/Makefile @@ -23,10 +23,11 @@ CONFIGURE_ARGS= --enable-compat185 \ --enable-dump185 --enable-cxx post-install: + @-${RM} -fr ${PREFIX}/share/examples/db2 ${MKDIR} ${PREFIX}/share/examples/db2 cd ${WRKSRC}/..; \ - tar -cf - --exclude tags examples/ examples_cxx/ examples_java/ | \ - ( cd ${PREFIX}/share/examples/db2; tar xf - ) + tar -cf - --exclude tags examples/ examples_cxx/ examples_java/. \ + | ( cd ${PREFIX}/share/examples/db2; tar xf - ) @${ECHO_MSG} "" @${ECHO_MSG} "Java support for ${PKGNAME} is *not* built by default, and requires that you" @${ECHO_MSG} "have a working copy of the JDK (v1.1) installed." |