Re: Small patch to fix build on Windows

Поиск
Список
Период
Сортировка
От Dmitry Igrishin
Тема Re: Small patch to fix build on Windows
Дата
Msg-id CAAfz9KPVff92Np51DvvCDvqvxVchiuuvJCzz56qtM=N0SUnG8A@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Small patch to fix build on Windows  (Kyotaro Horiguchi <horikyota.ntt@gmail.com>)
Ответы Re: Small patch to fix build on Windows  (Juan José Santamaría Flecha <juanjo.santamaria@gmail.com>)
Re: Small patch to fix build on Windows  (Kyotaro Horiguchi <horikyota.ntt@gmail.com>)
Список pgsql-hackers
ср, 7 авг. 2019 г. в 11:29, Kyotaro Horiguchi <horikyota.ntt@gmail.com>:
>
> Hi,
>
> At Tue, 6 Aug 2019 22:50:14 +0300, Dmitry Igrishin <dmitigr@gmail.com> wrote in
<CAAfz9KO4Nt-kDUKAcEKFND+1LeZ6nH_hjPGamonfTeZLRKz0bg@mail.gmail.com>
> > The attached self-documented patch fixes build on Windows in case when
> > path to Python has embedded spaces.
>
> -          $solution->{options}->{python} . "\\python -c \"$pythonprog\"";
> +          "\"$solution->{options}->{python}\\python\" -c \"$pythonprog\"";
>
> Solution.pm has the following line:
>
> >       my $opensslcmd =
> >         $self->{options}->{openssl} . "\\bin\\openssl.exe version 2>&1";
>
> AFAICS that's all.
Thank you! The attached 2nd version of the patch fixes this too.

>
>
> -    if ($lib =~ m/\s/)
> -    {
> -        $lib = '"' . $lib . """;
> -    }
> +    # Since VC automatically quotes paths specified as the data of
> +    # <AdditionalDependencies> in VC project file, it's mistakably
> +    # to quote them here. Thus, it's okay if $lib contains spaces.
>
> I'm not sure, but it's not likely that someone adds it without
> actually stumbling on space-containing paths with the ealier
> version. Anyway if we shouldn't touch this unless the existing
> code makes actual problem.
So, do you think a comment is not needed here?

Вложения

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

Предыдущее
От: Evgeny Efimkin
Дата:
Сообщение: Re: Feature improvement: can we add queryId for pg_catalog.pg_stat_activityview?
Следующее
От: Amit Kapila
Дата:
Сообщение: Re: POC: Cleaning up orphaned files using undo logs