Skip to content

Commit

Permalink
Remove reference to '*.in.c' files as they don't exist anymore
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/postgis/trunk@14822 b70326c6-7e19-0410-871a-916f4a2858ee
  • Loading branch information
Sandro Santilli committed Apr 6, 2016
1 parent 6c63cd7 commit 3f09075
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions astyle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -20,8 +20,8 @@ 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 '*.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

0 comments on commit 3f09075

Please sign in to comment.