summaryrefslogtreecommitdiff
path: root/math/maxima/files/patch-doc_info_Makefile.in
blob: af7049a4ed472e4d32a5cd49b698487aef7dae71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--- doc/info/Makefile.in.orig	2008-12-08 11:08:06.607586350 -0500
+++ doc/info/Makefile.in	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