Re: lib and share are installed differently, but why?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: lib and share are installed differently, but why?
Дата
Msg-id 1349737.1630333446@sss.pgh.pa.us
обсуждение исходный текст
Ответ на lib and share are installed differently, but why?  (Mario Emmenlauer <mario@emmenlauer.de>)
Ответы Re: lib and share are installed differently, but why?  (Mario Emmenlauer <mario@emmenlauer.de>)
Список pgsql-general
Mario Emmenlauer <mario@emmenlauer.de> writes:
> I've been building and using PostgreSQL from source for a few years
> now, thanks for the awesome work!

> Since upgrading from 12.5 to 12.8, I've found a problem that I can
> not resolve myself. We build PostgreSQL twice, once to folder A, and
> once to folder B. This is because A is more easily deployable, while
> B holds all our development build targets. The only difference in
> the two builds is the change in `--prefix` for configure. Everything
> else is identical, and both builds start from a clean directory.

> But I see a difference in the installations:
>  - The contents of `share` go to A/share/ vs B/share/postgresql/
>  - The contents of `lib` go to B/lib vs B/lib/postgresql/

You didn't say exactly what "A" and "B" stand for, but I'll bet
that the string "A" includes "pgsql" or "postgres".  Makefile.global
makes some installation path changes when that's not true, e.g.

pkglibdir = $(libdir)
ifeq "$(findstring pgsql, $(pkglibdir))" ""
ifeq "$(findstring postgres, $(pkglibdir))" ""
override pkglibdir := $(pkglibdir)/postgresql
endif
endif

This behavior is pretty ancient; I'm quite sure it didn't change
between 12.5 and 12.8.  So I speculate that you made some change
in your build process that you didn't mention.

            regards, tom lane



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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: lib and share are installed differently, but why?
Следующее
От: Vijaykumar Jain
Дата:
Сообщение: Re: Pg stuck at 100% cpu, for multiple days