diff options
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 |