summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authormef <mef>2013-08-12 03:09:59 +0000
committermef <mef>2013-08-12 03:09:59 +0000
commitbe078e9b314efd2a80c45a198a8d91969fce1a54 (patch)
tree31da5b21e52e27be90ff1719a9a6640ebf727534 /cross
parent7ed3d0cc4391478a280f05c0539e631b4bc0d914 (diff)
downloadpkgsrc-be078e9b314efd2a80c45a198a8d91969fce1a54.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')
-rw-r--r--cross/avr-libc/patches/patch-doc_api_Makefile_am16
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