From 9096886a6734f82e997838c9b561b8d5dffb2ed0 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Wed, 26 Oct 2005 14:26:35 +0200 Subject: [PATCH] @USE_INCLUDED_LIBINTL@ -> $(CONFIG_NLS), @GLIBC21@ -> $(GLIBC21) Should remove all @Makefile.in@ variable traces except for @host@ also in src/intl/gettext/Makefile (which zas will hopefully fix :). --- src/intl/gettext/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intl/gettext/Makefile b/src/intl/gettext/Makefile index 0ab4866e9..ee96a583a 100644 --- a/src/intl/gettext/Makefile +++ b/src/intl/gettext/Makefile @@ -50,7 +50,7 @@ install-local: $(builddir)/charset.alias all $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ else \ - if test @GLIBC21@ = no; then \ + if test $(GLIBC21) = no; then \ $(MKINSTALLDIRS) $(DESTDIR)$(libdir); \ orig=charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ @@ -72,7 +72,7 @@ install-local: $(builddir)/charset.alias all fi uninstall-local: - @if test '@USE_INCLUDED_LIBINTL@' = yes; then \ + @if test '$(CONFIG_NLS)' = yes; then \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \