Re: Small patch to fix build on Windows

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Small patch to fix build on Windows
Дата
Msg-id 20190808170725.GA21041@alvherre.pgsql
обсуждение исходный текст
Ответ на Re: Small patch to fix build on Windows  (Dmitry Igrishin <dmitigr@gmail.com>)
Ответы Re: Small patch to fix build on Windows  (Dmitry Igrishin <dmitigr@gmail.com>)
Список 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



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: POC: converting Lists into arrays
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: First draft of back-branch release notes is done