Commit 8e6c8da1 authored by Peter Eisentraut's avatar Peter Eisentraut

pgindent: Fix order in instructions

The previous order of steps didn't literally work, because git clean
-fdx would delete the downloaded typedefs.list.  Also, pgindent needs to
be called with a path when one is in at the top of the build tree.
parent fdaf4486
......@@ -10,11 +10,7 @@ This can format all PostgreSQL *.c and *.h files, but excludes *.y, and
3) Change directory to the top of the build tree.
4) Download the typedef file from the buildfarm:
wget -O src/tools/pgindent/typedefs.list http://buildfarm.postgresql.org/cgi-bin/typedefs.pl
5) Remove all derived files (pgindent has trouble with one of the flex macros):
4) Remove all derived files (pgindent has trouble with one of the flex macros):
gmake maintainer-clean
......@@ -22,9 +18,13 @@ This can format all PostgreSQL *.c and *.h files, but excludes *.y, and
git clean -fdx
5) Download the typedef file from the buildfarm:
wget -O src/tools/pgindent/typedefs.list http://buildfarm.postgresql.org/cgi-bin/typedefs.pl
6) Run pgindent:
pgindent
src/tools/pgindent/pgindent
7) Remove any files that generate errors and restore their original
versions.
......
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