From: Bruno Haible Date: Fri, 28 Jul 2000 17:53:01 +0000 (+0000) Subject: Really remove charset.alias when its reference count drops to 0. X-Git-Tag: v0.10.36~250 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5831e3b570301be87c29c52eebbc8dceff3065bb;p=thirdparty%2Fgettext.git Really remove charset.alias when its reference count drops to 0. --- diff --git a/intl/ChangeLog b/intl/ChangeLog index 15be3d6b2..ed1f439c5 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,6 +1,7 @@ 2000-07-28 Bruno Haible * Makefile.in (uninstall): Synchronize with the install target. + Really remove charset.alias when its reference count drops to 0. 2000-07-28 Bruno Haible diff --git a/intl/Makefile.in b/intl/Makefile.in index b76a8808f..5a770778e 100644 --- a/intl/Makefile.in +++ b/intl/Makefile.in @@ -184,7 +184,7 @@ uninstall: dest=$(DESTDIR)$(libdir)/charset.alias; \ sed -f ref-del.sed $$dest > $$temp; \ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \ - rm -f $$temp; \ + rm -f $$dest; \ else \ $(INSTALL_DATA) $$temp $$dest; \ fi; \