diff options
author | mef <mef@pkgsrc.org> | 2013-08-12 03:09:59 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2013-08-12 03:09:59 +0000 |
commit | 5092a9059e6835bd75b142e320cf7472881e95aa (patch) | |
tree | 31da5b21e52e27be90ff1719a9a6640ebf727534 /cross/avr-libc | |
parent | bc91feebb4c9bc58ee5dfde664f7d10d82a82496 (diff) | |
download | pkgsrc-5092a9059e6835bd75b142e320cf7472881e95aa.tar.gz |
patches/patch-doc_api_Makefile_am
Remove. The patch was to remove unnecessary (unwanted)
man pages for the build directories including ${WRKSRC}
generated by doxygen.
Equivalent for-loop was gone in doc/api/Makefile.am now.
The logic is now in post-install: target in (pkgsrc) Makefile.
This removal was meant in previous commit and distinfo does not
include this removing patch. Sorry for left out patch itself.
Thanks dholland@ pointing out.
Diffstat (limited to 'cross/avr-libc')
-rw-r--r-- | cross/avr-libc/patches/patch-doc_api_Makefile_am | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/cross/avr-libc/patches/patch-doc_api_Makefile_am b/cross/avr-libc/patches/patch-doc_api_Makefile_am deleted file mode 100644 index 6e30a6e4587..00000000000 --- a/cross/avr-libc/patches/patch-doc_api_Makefile_am +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-doc_api_Makefile_am,v 1.2 2012/08/29 09:51:29 drochner Exp $ - -Doxygen produces man pages for the build directories too, which we really -don't want to install. These are tricky to match, but are the man pages -that start and finish with a single underscore character. Prune them out. - ---- doc/api/Makefile.am.orig 2008-11-07 10:42:52.000000000 +1300 -+++ doc/api/Makefile.am 2012-08-19 02:12:34.354453680 +1200 -@@ -230,6 +230,7 @@ - $(mkinstalldirs) $(DOC_INST_DIR)/man/man3 - @list='$(wildcard man/man3/*.3)'; \ - for file in $$list ; do \ -+ case "$$file" in */_[!_]*[!_]_.3) continue;; esac; \ - echo " $(INSTALL_DATA) $$file $(DOC_INST_DIR)/$$file"; \ - $(INSTALL_DATA) $$file $(DOC_INST_DIR)/$$file; \ - done |