Обсуждение: pgsql: Regression makefile now needs to make separate lists of what to

Поиск
Список
Период
Сортировка

pgsql: Regression makefile now needs to make separate lists of what to

От
tgl@postgresql.org (Tom Lane)
Дата:
Log Message:
-----------
Regression makefile now needs to make separate lists of what to clean
for input/ and output/ directories, because with the addition of
largeobject_1.source, they're not the same list.  Apparently the current
buildfarm process does not exercise whether 'make distclean' leaves a
clean tree behind, else the farm would have been failing for awhile.

Modified Files:
--------------
    pgsql/src/test/regress:
        GNUmakefile (r1.66 -> r1.67)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/GNUmakefile.diff?r1=1.66&r2=1.67)

Re: pgsql: Regression makefile now needs to make separate lists of what to

От
Andrew Dunstan
Дата:
Tom Lane wrote:
> Log Message:
> -----------
> Regression makefile now needs to make separate lists of what to clean
> for input/ and output/ directories, because with the addition of
> largeobject_1.source, they're not the same list.  Apparently the current
> buildfarm process does not exercise whether 'make distclean' leaves a
> clean tree behind, else the farm would have been failing for awhile.
>
>

The buildfarm doesn't run "make distclean". Except for vpath builds, it
always builds against a copy of the repo, which is thrown away at the
end of the run. In the vpath case, the vpath directory tree is discarded.

Thanks for fixing the makefile.

cheers

andrew