We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c2a60b commit 6dca03aCopy full SHA for 6dca03a
Makefile.in
@@ -74,6 +74,8 @@ fix-svn-eol-style:
74
svn propset svn:eol-style LF `find SimulationRuntime/c Compiler/runtime/ libraries/ OMEdit/ OMNotebook/ | egrep "\.[ch]\$$|\.[ch]pp\$$" | grep -v "[ ]"`
75
svn propset svn:eol-style LF `find . | grep /Makefile\$$`
76
svn propset svn:eol-style LF `find . | grep /Makefile.in\$$`
77
+fix-bom:
78
+ find -type f|while read file;do [ "`head -c3 -- "$file"`" == $'\xef\xbb\xbf' ] && echo "found BOM in: $file"; && sed -i '1 s/^\xef\xbb\xbf//' "$file";done
79
80
.PRECIOUS: Makefile
81
0 commit comments