From: ivan Date: Thu, 8 Apr 2004 12:37:17 +0000 (+0000) Subject: fix psql command line options for older pg X-Git-Tag: BEFORE_FINAL_MASONIZE~1155 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=179de7c7734515475859823659b0ffb1ddc59635 fix psql command line options for older pg --- diff --git a/Makefile b/Makefile index f631bf1b7..b99206c27 100644 --- a/Makefile +++ b/Makefile @@ -213,7 +213,7 @@ configure-rt: create-rt: configure-rt cd rt; make install echo -e "${DB_PASSWORD}\n\\d sessions"\ - | psql -UW ${DB_USER} freeside 2>&1\ + | psql -U ${DB_USER} -W freeside 2>&1\ | grep '^Did not find'\ && rt/sbin/rt-setup-database --dba '${DB_USER}' \ --dba-password '${DB_PASSWORD}' \