1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

Add missing host variable and fix installation of charset.alias

Add variable expanded from @host@ and use $(host) instead of @host@
in the gettext Makefile.

Reported by zas.
This commit is contained in:
Jonas Fonseca 2005-10-26 19:06:30 +02:00 committed by Jonas Fonseca
parent 9096886a67
commit a5d205c047
2 changed files with 3 additions and 1 deletions

View File

@ -42,6 +42,8 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
host = @host@
ASCIIDOC = @ASCIIDOC@
AWK = @AWK@
CATALOGS = @CATALOGS@

View File

@ -27,7 +27,7 @@ OBJS = \
# $(builddir)/charset.alias: $(srcdir)/config.charset
$(builddir)/charset.alias: $(srcdir)/config.charset
$(SHELL) $(srcdir)/config.charset '@host@' > $@.new
$(SHELL) $(srcdir)/config.charset '$(host)' > $@.new
mv $@.new $@
# FIXME: Building plural.c from plural.y on the fly doesn't work