Use automake *-local hooks without commands, for extensibility.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 2 May 2009 07:10:20 +0000 (09:10 +0200)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 2 May 2009 07:10:20 +0000 (09:10 +0200)
* 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 <Ralf.Wildenhues@gmx.de>
ChangeLog
modules/localcharset

index 1b3895f..e7c301b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       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  <Ralf.Wildenhues@gmx.de>
             Bruno Haible  <bruno@clisp.org>
 
index 2d4a700..d01da33 100644 (file)
@@ -39,7 +39,8 @@ all-local: charset.alias ref-add.sed ref-del.sed
 
 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 @@ install-exec-local: all-local
          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) \