diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-11-27 17:14:23 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-11-27 17:14:23 +0000 |
commit | be5a93f9f9acb019292dff569ef23b3921912e29 (patch) | |
tree | e311d38dfd1944f601f6957749bf9735ac7264ea /archivers | |
parent | Ve vill make you obey ze new autoconf rulez! Orr elz you vill listen to (diff) |
Fix the build of lang/ruby_static-devel, i.e. the build of
archiver/ruby-zlib with lang/ruby-devel in the correct way.
The cause of this problem is that FreeBSD's make(1) got a bit too
sensitive about a mixture of `target:' and `target::'.
Notes
Notes:
svn path=/head/; revision=71168
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/ruby-zlib/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archivers/ruby-zlib/Makefile b/archivers/ruby-zlib/Makefile index 2a33e8719aae..e0b67263498e 100644 --- a/archivers/ruby-zlib/Makefile +++ b/archivers/ruby-zlib/Makefile @@ -23,6 +23,9 @@ INSTALL_TARGET= site-install DOCS_EN= ChangeLog zlib.rd.en zlib.en.html DOCS_JA= zlib.rd.ja zlib.ja.html +post-extract: + ${RM} ${WRKSRC}/depend + post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_MODDOCDIR}/ja |