File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 11:
22# remove extra #include's
33
4+ # pgcompinclude must be run before and after pgrminclude. It must be
5+ # run before because we don't want include dependencies to leak into
6+ # the C program files, and after because removal of includes from headers
7+ # can cause new include unfulfilled dependencies.
8+ #
49# Limitations: 2011-09-24
510#
611# Pgrminclude, when processing header files, can cause includes to be
@@ -115,8 +120,8 @@ compile_file() {
115120
116121# Process include files first because they can affect the compilation
117122# of *.c files.
118- (find . \( -name .git -a -prune \) -o -type f -name '*.h' -print;
119- find . \( -name .git -a -prune \) -o -type f -name '*.c' -print ) |
123+ (find . \( -name .git -a -prune \) -o -type f -name '*.h' -print | sort ;
124+ find . \( -name .git -a -prune \) -o -type f -name '*.c' -print | sort ) |
120125grep -v '/postgres.h$' |
121126grep -v '/postgres_fe.h$' |
122127grep -v '/pg_config.h$' |
You can’t perform that action at this time.
0 commit comments