diff options
author | cube <cube@pkgsrc.org> | 2004-06-14 20:51:11 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2004-06-14 20:51:11 +0000 |
commit | b81dd0cbd93b349ed8b0d3f0677f3f8bf25f2464 (patch) | |
tree | f8d8bf5232970a2ac0ef7e5b9c95c2f0395fdce4 /databases | |
parent | d6d37557bee079b6622c4ca6537d1c3107227bca (diff) | |
download | pkgsrc-b81dd0cbd93b349ed8b0d3f0677f3f8bf25f2464.tar.gz |
'localedir' is actually two spaces away from the beginning of the line in
the configure script. Let's play safe and use '\s+'. Should fix PR 25923
by jmmv.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgresql74/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/postgresql74/Makefile.common b/databases/postgresql74/Makefile.common index bf65cd72fce..584f2a9d434 100644 --- a/databases/postgresql74/Makefile.common +++ b/databases/postgresql74/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2004/06/12 02:02:07 grant Exp $ +# $NetBSD: Makefile.common,v 1.6 2004/06/14 20:51:11 cube Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -52,7 +52,7 @@ SUBST_CLASSES+= pkglocaledir SUBST_MESSAGE.pkglocaledir= "Fixing locale directory references." SUBST_FILES.pkglocaledir= configure config/programs.m4 SUBST_STAGE.pkglocaledir= post-patch -SUBST_SED.pkglocaledir= -e 's|\( localedir[ :]*=\).*|\1${_PKGLOCALEDIR}|' +SUBST_SED.pkglocaledir= -e 's|\(\s+localedir[ :]*=\).*|\1${_PKGLOCALEDIR}|' .include "../../mk/bsd.prefs.mk" |