Skip to content

Commit

Permalink
makefile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Wiggins committed Feb 20, 2011
1 parent 0fcabeb commit b3d64ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -2,7 +2,7 @@ PG_PATH=/tmp/pg
DATA_PATH=/tmp/pgdata

pg:
./configure --prefix=$(PG_PATH)
make install
/tmp/pg/bin/initdb $(DATA_PATH) -U postgres
cd postgresql-9.0.3 && ./configure --prefix=$(PG_PATH)
cd postgresql-9.0.3 && make install
$(PG_PATH)/bin/initdb $(DATA_PATH) -U postgres
echo 'host all all 0.0.0.0/0 md5' >> $(DATA_PATH)/pg_hba.conf

0 comments on commit b3d64ea

Please sign in to comment.