diff options
author | rillig <rillig> | 2006-12-23 13:59:57 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-12-23 13:59:57 +0000 |
commit | f2ed73e10925cbeda59882ba8494740151dc82ac (patch) | |
tree | 8c4129fbc26e042124764cc6cb1a07b27cdd11d1 /misc/yelp/patches | |
parent | c240f77208896adee90a5561fe5b5b6ec1a9ec29 (diff) | |
download | pkgsrc-f2ed73e10925cbeda59882ba8494740151dc82ac.tar.gz |
Fixed unresolved shell variable reference found by CHECK_HEADERS=yes.
PKGREVISION++.
Diffstat (limited to 'misc/yelp/patches')
-rw-r--r-- | misc/yelp/patches/patch-ab | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/yelp/patches/patch-ab b/misc/yelp/patches/patch-ab new file mode 100644 index 00000000000..c034e19af5f --- /dev/null +++ b/misc/yelp/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1 2006/12/23 13:59:58 rillig Exp $ + +AM_GLIB_DEFINE_LOCALEDIR is buggy. It does not expand enough variable +references in $localedir. + +--- configure.orig 2006-12-23 14:01:10.000000000 +0100 ++++ configure 2006-12-23 14:47:55.000000000 +0100 +@@ -23598,6 +23598,7 @@ if test "x$CATOBJEXT" = "x.mo" ; then + else + localedir=`eval echo "${datadir}/locale"` + fi ++localedir="$prefix/$PKGLOCALEDIR/locale" + prefix="$glib_save_prefix" + exec_prefix="$glib_save_exec_prefix" + |