[postgis-tickets] r14822 - Remove reference to '*.in.c' files as they don't exist anymore
Sandro Santilli
strk at keybit.net
Wed Apr 6 01:43:09 PDT 2016
Author: strk
Date: 2016-04-06 01:43:09 -0700 (Wed, 06 Apr 2016)
New Revision: 14822
Modified:
trunk/astyle.sh
Log:
Remove reference to '*.in.c' files as they don't exist anymore
Modified: trunk/astyle.sh
===================================================================
--- trunk/astyle.sh 2016-04-06 07:30:47 UTC (rev 14821)
+++ trunk/astyle.sh 2016-04-06 08:43:09 UTC (rev 14822)
@@ -6,7 +6,7 @@
which astyle > /dev/null
RET=$?
if [ $RET -ne 0 ]; then
- echo "Could not find astyle - aborting."
+ echo "Could not find astyle - aborting."
exit
fi
@@ -20,8 +20,8 @@
# 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 '*.in.c' -o -name '*_parse.c' -o -name '*_lex.c' \)`
+CFILES=`find . -name '*.c' -not \( -name '*_parse.c' -o -name '*_lex.c' \)`
-# Run the standard format on the files, and do not
+# 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
More information about the postgis-tickets
mailing list