man: fix and adjust zoneimport
[oweals/gnunet.git] / pre-commit
index 777728a6bbb417cd76596ceb765094cb4c149caa..c67fcaf0c65393ccdb385e786147fe28a240a1ed 100755 (executable)
@@ -2,6 +2,8 @@
 # Run this script to indent the GNUnet code.  When run without arguments,
 # it indents the ENTIRE src/ tree.  Run with 'src/XXX' to indent the
 # src/XXX directory.
+#
+# This script is in the public domain.
 if test $# = 0
 then
  PATHS=src/
@@ -12,10 +14,9 @@ find $PATHS -name "*.c" -exec indent {} \;
 find $PATHS -name "*.h" -exec indent {} \;
 find $PATHS -name "*.c" -exec indent {} \;
 find $PATHS -name "*.h" -exec indent {} \;
-find $PATHS -name "*.c" -exec contrib/removetrailingwhitespace.py {} \;
-find $PATHS -name "*.h" -exec contrib/removetrailingwhitespace.py {} \;
-if test -x "`which 'dos2unix'`"
-then
+find $PATHS -name "*.c" -exec contrib/scripts/removetrailingwhitespace.py {} \;
+find $PATHS -name "*.h" -exec contrib/scripts/removetrailingwhitespace.py {} \;
+if test -n "`dos2unix -V | head -n1 | awk '{print $1 $2}'`"; then
   find $PATHS -name "*.c" -exec dos2unix {} \;
   find $PATHS -name "*.h" -exec dos2unix {} \;
 fi