Re: Small patch to fix build on Windows

From: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>
To: Dmitry Igrishin <dmitigr(at)gmail(dot)com>
Cc: Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Small patch to fix build on Windows
Date: 2019-08-08 17:07:25
Message-ID: 20190808170725.GA21041@alvherre.pgsql
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 2019-Aug-08, Dmitry Igrishin wrote:

> my $prefixcmd =
> - $solution->{options}->{python} . "\\python -c \"$pythonprog\"";
> + "\"$solution->{options}->{python}\\python\" -c \"$pythonprog\"";

I think you can make this prettier like this:

my $prefixcmd = qq{"$solution->{options}->{python}\\python" -c "$pythonprog"};

--
Álvaro Herrera https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Alvaro Herrera 2019-08-08 17:15:53 Re: First draft of back-branch release notes is done
Previous Message Tom Lane 2019-08-08 16:24:52 Re: POC: converting Lists into arrays