1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

@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 :).
This commit is contained in:
Jonas Fonseca 2005-10-26 14:26:35 +02:00 committed by Jonas Fonseca
parent e82de325a0
commit 9096886a67

View File

@ -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; \