Remove find-missing-eol-prop and fix-eol-prop
authorGreg Hudson <ghudson@mit.edu>
Sat, 12 May 2012 23:03:47 +0000 (19:03 -0400)
committerGreg Hudson <ghudson@mit.edu>
Sat, 12 May 2012 23:03:47 +0000 (19:03 -0400)
Remove two Subversion-specific scripts which are no longer necessary
now that the master repository is in git.

src/util/find-missing-eol-prop [deleted file]
src/util/fix-eol-prop [deleted file]

diff --git a/src/util/find-missing-eol-prop b/src/util/find-missing-eol-prop
deleted file mode 100755 (executable)
index 6cdad65..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-find . \( \( -name .svn -o -name .\#\* -o -name \*~ -o -name \#\* -o -name autom4te.cache \) -prune \) -o \( -type f -print \) | \
-while read name; do
-  if test "`svn pg svn:eol-style $name`" == ""; then
-    echo svn:eol-style missing on $name
-  fi
-done
diff --git a/src/util/fix-eol-prop b/src/util/fix-eol-prop
deleted file mode 100755 (executable)
index 346568c..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-find . \( -name \*.c -o -name \*.h -o -name \*.hin -o -name \*.in \
-         -o -name \*.txt -o -name Makefile.in -o -name \*.sh -o -name \*.exp \
-         -o -name \*.cxx -o -name \*.hxx -o -name \*.html -o -name \*.def \
-         -o -name \*.idl -o -name \*.Acf -o -name \*.Idl \
-         -o -name Makefile.w32 \
-         \) -print | \
-while read name; do
-  if test "`svn pg svn:eol-style $name`" == ""; then
-    svn ps svn:eol-style native $name
-  fi
-done