aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-07-14 22:37:56 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-07-14 22:37:56 +0200
commitf20dd6f2a741d1b0472463397608642d32ada477 (patch)
tree9bf2a8d2775e941639f59033d0be1a321f8f978c /build
parentaec225a72080dad0942096f3546b3077ca5b428f (diff)
Aesthetic changes
Diffstat (limited to 'build')
-rwxr-xr-xbuild/pgsql/configure8
1 files changed, 5 insertions, 3 deletions
diff --git a/build/pgsql/configure b/build/pgsql/configure
index 7eeadc9..3e8a72c 100755
--- a/build/pgsql/configure
+++ b/build/pgsql/configure
@@ -31,7 +31,9 @@ $echo
db=`read_value "odb_test"`
$echo
-$echo "Please enter the PostgreSQL database host."
+$echo "Please enter the PostgreSQL database host. Leaving this field"
+$echo "blank results in using Unix-domain sockets. Machines without"
+$echo "Unix-domain sockets will connect to localhost."
$echo
host=`read_value ""`
@@ -49,11 +51,11 @@ drv=$dcf_root/db-driver
echo "--user '$user'" >$opt
echo "--database '$db'" >>$opt
-if [ -n "$host"]; then
+if [ -n "$host" ]; then
echo "--host '$host'" >>$opt
fi
-if [ -n "$port"]; then
+if [ -n "$port" ]; then
echo "--port '$port'" >>$opt
fi