Commit 910725b4 authored by Bruce Momjian's avatar Bruce Momjian

Fix pgrminclude regex pattern.

parent 6a56a38f
......@@ -13,7 +13,7 @@ while read FILE
do
# Skip files with #if and #ifdef blocks because the blocks
# might contain code that is not compiled on this platform.
grep -q '^if' "$FILE" && continue
grep -q '^#if' "$FILE" && continue
if [ `expr $FILE : '.*\.h$'` -ne 0 ]
then IS_INCLUDE="Y"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment