diff options
Diffstat (limited to 'databases/postgresql14/Makefile.common')
-rw-r--r-- | databases/postgresql14/Makefile.common | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/databases/postgresql14/Makefile.common b/databases/postgresql14/Makefile.common index ad0678388fa..c397abe7fa7 100644 --- a/databases/postgresql14/Makefile.common +++ b/databases/postgresql14/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.7 2022/08/15 20:59:39 adam Exp $ +# $NetBSD: Makefile.common,v 1.8 2022/10/16 14:42:50 gdt Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -68,6 +68,12 @@ CONFIGURE_ARGS+= --without-perl CONFIGURE_ARGS+= --without-python CONFIGURE_ARGS+= --without-tcl +# Work around a bug in autoconf, that thinks almost all mkdir +# implementations are deficient, and a bug someplace between postgis +# and pgxs, that causes topology/Makefile.in to run pgxs's install-sh +# but without a path. +CONFIGURE_ENV+= ac_cv_path_mkdir="mkdir" + # avoid pointing to a wrapper CONFIGURE_ENV+= MSGFMT=${TOOLS_PATH.msgfmt} |