From e84e9b5fa2e4352bfc3bfabe55dc57190da7e7d5 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 20 Aug 2009 14:59:13 -0400 Subject: Support gettext >= 0.14 instead of 0.17 This is needed for support of RHEL5 Adding the assignment of $(localedir) was necessary, as gettext 0.14 does not include automatically assign it. --- server/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/Makefile.am') diff --git a/server/Makefile.am b/server/Makefile.am index d42fa5c9..12ec4b1b 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -11,6 +11,7 @@ krb5plugindir = @krb5pluginpath@ sssdconfdir = $(sysconfdir)/sssd dbusintrospectdir = $(datarootdir)/sssd/introspect dbuspolicydir = $(sysconfdir)/dbus-1/system.d +localedir = @localedir@ dbpath = @dbpath@ pluginpath = @pluginpath@ @@ -135,7 +136,7 @@ AM_CPPFLAGS = -Wall \ -DSSS_PAM_SOCKET_NAME=\"$(pipepath)/pam\" \ -DSSS_PAM_PRIV_SOCKET_NAME=\"$(pipepath)/private/pam\" \ -DUSE_MMAP=1 \ - -DLOCALEDIR=\"\$(localedir)\" + -DLOCALEDIR=\"$(localedir)\" EXTRA_DIST = build/config.rpath -- cgit