Re: Unable to compile postgres 13.1 on Slackware current x64

From: Thomas Munro <thomas(dot)munro(at)gmail(dot)com>
To: Condor <condor(at)stz-bg(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>, "pgsql-generallists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: Unable to compile postgres 13.1 on Slackware current x64
Date: 2020-11-17 09:00:01
Message-ID: CA+hUKGLYc5kQr04iBWkM=XvHLWjz7TzEUs3HuGtqViQEETDGVg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, Nov 17, 2020 at 8:02 PM Condor <condor(at)stz-bg(dot)com> wrote:
> I try to compile postgres again with (cd src/backend/commands; sed
> 's/TRUE/true/' collationcmds.c > collationcmds.c; ) and it's compiled
> but get new error on linking:

Doesn't that produce an empty file collationcmds.c? I think you want:

sed 's/TRUE/true/' collationcmds.c > collationcmds.c.tmp && mv
collationcmds.c.tmp collationcmds.c

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Condor 2020-11-17 12:33:48 Re: Unable to compile postgres 13.1 on Slackware current x64
Previous Message Condor 2020-11-17 07:02:50 Re: Unable to compile postgres 13.1 on Slackware current x64