Author: barbier
Date: 2006-08-10 22:06:29 +0000 (Thu, 10 Aug 2006)
New Revision: 1715

Added:
   glibc-package/trunk/debian/debhelper.in/locales-all.prerm
Modified:
   glibc-package/trunk/debian/changelog
Log:
* debian/debhelper.in/locales-all.prerm: New file, to remove
  /usr/lib/locale/locale-archive.  Closes: #382136  Thanks Lars Wirzenius


Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog        2006-08-10 21:36:18 UTC (rev 
1714)
+++ glibc-package/trunk/debian/changelog        2006-08-10 22:06:29 UTC (rev 
1715)
@@ -5,6 +5,8 @@
     uninitialized byte in LC_CTYPE locale file.
   * debian/debhelper.in/locales-all.postinst: Make localedef silent, and
     fix an error, this script could not be run more than once.
+  * debian/debhelper.in/locales-all.prerm: New file, to remove
+    /usr/lib/locale/locale-archive.  Closes: #382136  Thanks Lars Wirzenius
 
   [ Aurelien Jarno ]
   * sysdeps/{powerpc,s390,ia64}.mk: make the NPTL version buildable on 2.4

Added: glibc-package/trunk/debian/debhelper.in/locales-all.prerm
===================================================================
--- glibc-package/trunk/debian/debhelper.in/locales-all.prerm   2006-08-10 
21:36:18 UTC (rev 1714)
+++ glibc-package/trunk/debian/debhelper.in/locales-all.prerm   2006-08-10 
22:06:29 UTC (rev 1715)
@@ -0,0 +1,14 @@
+#!/bin/sh
+set -e
+
+case "$1" in
+    remove|purge)
+       rm -f /usr/lib/locale/locale-archive
+       ;;
+    *)
+       ;;
+esac
+
+#DEBHELPER#
+
+exit 0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to