]> granicus.if.org Git - postgis/commitdiff
Have astyle.sh use same indenting as requested by editorconfig
authorSandro Santilli <strk@kbt.io>
Wed, 28 Feb 2018 22:07:33 +0000 (22:07 +0000)
committerSandro Santilli <strk@kbt.io>
Wed, 28 Feb 2018 22:07:33 +0000 (22:07 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@16436 b70326c6-7e19-0410-871a-916f4a2858ee

astyle.sh

index 3f0997068185a2edef163f9874a4d0e2e3f15ab9..2e0aa4c111acf0b014ac42b7ba5326f643e5a5fa 100755 (executable)
--- a/astyle.sh
+++ b/astyle.sh
@@ -20,8 +20,24 @@ fi
 # Find all "pure" C files in the codebase
 #   - not .in.c used for .sql generation
 #   - not lex.yy.c or wktparse.tab.c as these are generated files
-CFILES=`find . -name '*.c' -not \( -name '*_parse.c' -o -name '*_lex.c' \)`
+#   - not topology/* files
+CFILES_TAB=`find . -name '*.c' -not \( \
+  -name '*_parse.c' -o \
+  -name '*_lex.c' -o \
+  -name './topology/*' -o \
+  -name './liblwgeom/liblwgeom_topo.*' \
+\)`
 
 # Run the standard format on the files, and do not
 # leave .orig files around for altered files.
-astyle --style=ansi --indent=tab --suffix=none $CFILES
+astyle --style=ansi --indent=tab --suffix=none $CFILES_TAB
+
+# Find all "pure" C files in the codebase
+#   - not .in.c used for .sql generation
+#   - not lex.yy.c or wktparse.tab.c as these are generated files
+#   - not topology/* files
+CFILES_SPACE="liblwgeom/*.c topology/*.c"
+
+# Run the standard format on the files, and do not
+# leave .orig files around for altered files.
+astyle --style=ansi --indent=space --suffix=none $CFILES_SPACE