From e191b6b8b262461c8725a8706a68d9fc366a0048 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Fri, 30 Sep 2022 10:51:45 -0700 Subject: [PATCH v2 2/2] meson: Add prefix=/usr/local/pgsql to default_options autoconf set PREFIX to /usr/local/pgsql, so using the same default for meson makes sense. The effect on windows is that installation defaults to installing to C:/usr/local/pgsql rather than meson's default of C:/, which doesn't seem perfect, but OK enough. Signed-off-by: Junwang Zhao Author: Junwang Zhao Discussion: https://postgr.es/CAEG8a3LGWE-gG6vuddmH91RORhi8gWs0mMB-hcTmP3_NVgM7dg@mail.gmail.com --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 0a62be8bc69..7719270a2e6 100644 --- a/meson.build +++ b/meson.build @@ -16,6 +16,7 @@ project('postgresql', default_options: [ 'warning_level=1', #-Wall equivalent 'buildtype=release', + 'prefix=/usr/local/pgsql', ] ) -- 2.37.3.542.gdd3f6c4cae