1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-21 12:05:57 +03:00

pg_upgrade: Remove check for pg_config

It is no longer used, but was still being checked for.

bug #7548 from Reinhard Max
This commit is contained in:
Peter Eisentraut 2012-09-18 21:53:34 -04:00
parent 807a40c551
commit 5cfd5bb15b

View File

@ -290,7 +290,6 @@ check_bin_dir(ClusterInfo *cluster)
if (cluster == &new_cluster) if (cluster == &new_cluster)
{ {
/* these are only needed in the new cluster */ /* these are only needed in the new cluster */
validate_exec(cluster->bindir, "pg_config");
validate_exec(cluster->bindir, "psql"); validate_exec(cluster->bindir, "psql");
validate_exec(cluster->bindir, "pg_dumpall"); validate_exec(cluster->bindir, "pg_dumpall");
} }