From: | Alvaro Herrera <alvherre(at)2ndquadrant(dot)com> |
---|---|
To: | Steve Singer <steve(at)ssinger(dot)info> |
Cc: | Andres Freund <andres(at)2ndquadrant(dot)com>, Thom Brown <thom(at)linux(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: logical changeset generation v6.1 |
Date: | 2013-09-28 23:56:21 |
Message-ID: | 20130928235621.GA5235@eldon.alvh.no-ip.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
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
From | Date | Subject | |
---|---|---|---|
Next Message | Amit Kapila | 2013-09-29 06:10:51 | Re: Suggestion: Issue warning when calling SET TRANSACTION outside transaction block |
Previous Message | Kevin Grittner | 2013-09-28 19:03:20 | Re: record identical operator - Review |