
November 29th, 2012, 02:04 PM
|
|
Registered User
|
|
Join Date: Nov 2012
Posts: 1
Time spent in forums: 8 m 22 sec
Reputation Power: 0
|
|
Help Requested: Make check fails at initdb
Hello DevShed community.
I have been modifying some of the Postgres 9.2.1 code and I am running into some odd temporary installation errors while running a make check.
The terminal outputs:
Code:
============== initializing database system ==============
pg_regress: initdb failed
Examine /Users/Burns/postgresql-9.2.1/src/test/regress/log/initdb.log for the reason.
Command was: "/Users/Burns/postgresql-9.2.1/src/test/regress/./tmp_check/install//usr/local/pgsql/bin/initdb" -D "/Users/Burns/postgresql-9.2.1/src/test/regress/./tmp_check/data" -L "/Users/Burns/postgresql-9.2.1/src/test/regress/./tmp_check/install//usr/local/pgsql/share" --noclean > "/Users/Burns/postgresql-9.2.1/src/test/regress/log/initdb.log" 2>&1
make[1]: *** [check] Error 2
make: *** [check] Error 2
x-134-84-251-37:postgresql-9.2.1 Burns$
I went ahead and found that initdb.log file and found the error:
Code:
creating system views ... FATAL: did not find '}' at end of input node
STATEMENT: /*
* PostgreSQL System Views
*
* Copyright (c) 1996-2012, PostgreSQL Global Development Group
*
* src/backend/catalog/system_views.sql
*/
Followed to system_view.sql and there is no mention of "input" and there isn't a single "{" open bracket in the file. This isn't a file that I have ever modified.
I have been stuck on this for awhile. If it makes a difference, i am running this on Mac OSX.
Any help/guidance would be greatly appreciated. Thanks.
|