diff options
author | Brendan Fabeny <bf@FreeBSD.org> | 2011-04-11 08:04:08 +0000 |
---|---|---|
committer | Brendan Fabeny <bf@FreeBSD.org> | 2011-04-11 08:04:08 +0000 |
commit | 0a59b351f616abe849539bc2afbc8eba4abe8004 (patch) | |
tree | a6e5dda8e502d065dcc72950bb588848d824572f /math/maxima/files/patch-doc_info_Makefile.in | |
parent | - Update to 0.3.3 (diff) |
- Update to 5.24.0
- Allow for a limit on memory use [1]
PR: 154899 [1]
Submitted by: Denny Lin (different patch) [1]
Notes
Notes:
svn path=/head/; revision=272514
Diffstat (limited to 'math/maxima/files/patch-doc_info_Makefile.in')
-rw-r--r-- | math/maxima/files/patch-doc_info_Makefile.in | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/math/maxima/files/patch-doc_info_Makefile.in b/math/maxima/files/patch-doc_info_Makefile.in new file mode 100644 index 000000000000..25d0eab08818 --- /dev/null +++ b/math/maxima/files/patch-doc_info_Makefile.in @@ -0,0 +1,29 @@ +--- doc/info/Makefile.am.orig 2008-12-08 11:08:06.607586350 -0500 ++++ doc/info/Makefile.am 2008-12-08 11:10:05.539477973 -0500 +@@ -202,24 +202,10 @@ + check_crlf check_tab fix_crlf fix_tab build_index.pl + + check_texinfo: +- pattern=`printf "\r$$"` ; \ +- bad_files=`find . -name '*.texi' -print | xargs $(EGREP) -l -e "$$pattern"` ; \ +- [ -z "$$bad_files" ] || ( echo "ERROR: The following files have DOS-style EOLs: $$bad_files" ; \ +- echo "Run make distclean and then /doc/info/fix_crlf to fix the problem." ; exit 1 ) +- pattern=`printf "\t"` ; \ +- bad_files=`find . -name '*.texi' -print | xargs $(EGREP) -l -e "$$pattern"` ; \ +- [ -z "$$bad_files" ] || ( echo "ERROR: The following files have unexpanded Tabs: $$bad_files" ; \ +- echo "Run make distclean and then /doc/info/fix_tab to fix the problem." ; exit 1 ) ++ echo "check_texinfo dummy target" + + warn_texinfo: +- pattern=`printf "\r$$"` ; \ +- bad_files=`find . -name '*.texi' -print | xargs $(EGREP) -l -e "$$pattern"` ; \ +- [ -z "$$bad_files" ] || ( echo "WARNING: The following files have DOS-style EOLs: $$bad_files" ; \ +- echo "Run /doc/info/fix_crlf to fix the problem." ) +- pattern=`printf "\t"` ; \ +- bad_files=`find . -name '*.texi' -print | xargs $(EGREP) -l -e "$$pattern"` ; \ +- [ -z "$$bad_files" ] || ( echo "WARNING: The following files have unexpanded Tabs: $$bad_files" ; \ +- echo "Run /doc/info/fix_tab to fix the problem." ) ++ echo "warn_texinfo dummy target" + + .PHONY: check_texinfo warn_texinfo + |