# HG changeset patch # User Ralf Wildenhues # Date 1241248220 -7200 # Node ID 84f60140a7e25c0365179720fa507328d54c48e8 # Parent 16e511eaf7d51bf35b69c8a89136078d5283ab93 Use automake *-local hooks without commands, for extensibility. * modules/localcharset (Makefile.am): Rename install-exec-local rule to install-exec-localcharset, mark it phony, and make it a prerequisite of install-exec-local. Likewise, rename the uninstall-local rule to uninstall-localcharset, mark phony, and make it a prerequisite of the former. Signed-off-by: Ralf Wildenhues diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2009-05-02 Ralf Wildenhues + + Use automake *-local hooks without commands, for extensibility. + * modules/localcharset (Makefile.am): Rename install-exec-local + rule to install-exec-localcharset, mark it phony, and make it a + prerequisite of install-exec-local. Likewise, rename the + uninstall-local rule to uninstall-localcharset, mark phony, and + make it a prerequisite of the former. + 2009-05-01 Ralf Wildenhues Bruno Haible diff --git a/modules/localcharset b/modules/localcharset --- a/modules/localcharset +++ b/modules/localcharset @@ -39,7 +39,8 @@ charset_alias = $(DESTDIR)$(libdir)/charset.alias charset_tmp = $(DESTDIR)$(libdir)/charset.tmp -install-exec-local: all-local +install-exec-local: install-exec-localcharset +install-exec-localcharset: all-local if test $(GLIBC21) = no; then \ case '$(host_os)' in \ darwin[56]*) \ @@ -67,7 +68,8 @@ fi ; \ fi -uninstall-local: all-local +uninstall-local: uninstall-localcharset +uninstall-localcharset: all-local if test -f $(charset_alias); then \ sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \ if grep '^# Packages using this file: $$' $(charset_tmp) \