Steve Singer wrote: > I'm still encountering an error in the make. > > make clean > . > .make[3]: Entering directory > `/usr/local/src/postgresql/src/bin/pg_basebackup' > rm -f pg_basebackup pg_receivexlog pg_recvlogical(X) \ > pg_basebackup.o pg_receivexlog.o pg_recvlogical.o \ > receivelog.o streamutil.o > /bin/sh: 1: Syntax error: "(" unexpected > make[3]: *** [clean] Error 2 > > I had to add a quotes in to the clean commands to make it work
The proper fix is to add a $ to the pg_recvlogical(X) in "clean" -- should be $(X) There's another bug in the Makefile: the install target is installing recvlogical$(X) as receivellog$(X). -- Álvaro Herrera http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Training & Services -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers