changeset 31220:0040b1d2dca5

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 <Ralf.Wildenhues@gmx.de>
author Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
date Sat, 02 May 2009 09:10:20 +0200
parents 2d57c5098a68
children 7abce876439f
files ChangeLog modules/localcharset
diffstat 2 files changed, 13 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri May 01 23:36:40 2009 +0200
+++ b/ChangeLog	Sat May 02 09:10:20 2009 +0200
@@ -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>
 
--- a/modules/localcharset	Fri May 01 23:36:40 2009 +0200
+++ b/modules/localcharset	Sat May 02 09:10:20 2009 +0200
@@ -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) \