]> git.pld-linux.org Git - packages/postgresql.git/blame - postgresql-pg_ctl-nopsql.patch
- upgrade to 7.4beta1
[packages/postgresql.git] / postgresql-pg_ctl-nopsql.patch
CommitLineData
3a9ca497
JK
1--- src/bin/pg_ctl/pg_ctl.sh.orig 2003-08-05 01:59:39.000000000 +0200
2+++ src/bin/pg_ctl/pg_ctl.sh 2003-08-08 22:04:34.000000000 +0200
3@@ -98,12 +98,12 @@
bbd970f4 4 fi
5
6 # Check if needed programs actually exist in path
7-if [ -x "$self_path/postmaster" ] && [ -x "$self_path/psql" ]; then
8+if [ -x "$self_path/postmaster" ]; then
9 PGPATH="$self_path"
10-elif [ -x "$bindir/postmaster" ] && [ -x "$bindir/psql" ]; then
11+elif [ -x "$bindir/postmaster" ]; then
12 PGPATH="$bindir"
13 else
3a9ca497
JK
14- echo "The programs \"postmaster\" and \"psql\" are needed by $CMDNAME but" 1>&2
15+ echo "The programs \"postmaster\" is needed by $CMDNAME but" 1>&2
16 echo "were not found in the directory \"$bindir\"." 1>&2
bbd970f4 17 echo "Check your installation." 1>&2
18 exit 1
This page took 0.032894 seconds and 4 git commands to generate.