[Python-apps-commits] r1629 - in packages/mercurial/trunk/debian (2 files)

vdanjean at users.alioth.debian.org vdanjean at users.alioth.debian.org
Thu Jul 31 12:44:28 UTC 2008


    Date: Thursday, July 31, 2008 @ 12:44:27
  Author: vdanjean
Revision: 1629

Fix bashisms in mercurial postinst

Modified:
  packages/mercurial/trunk/debian/changelog
  packages/mercurial/trunk/debian/mercurial.postinst

Modified: packages/mercurial/trunk/debian/changelog
===================================================================
--- packages/mercurial/trunk/debian/changelog	2008-07-31 12:35:37 UTC (rev 1628)
+++ packages/mercurial/trunk/debian/changelog	2008-07-31 12:44:27 UTC (rev 1629)
@@ -2,6 +2,7 @@
 
   * fix subversion 1.5 compatibility (Closes: #492244)
     using upstream patch
+  * fix bashism in postinst
 
  -- Vincent Danjean <vdanjean at debian.org>  Thu, 31 Jul 2008 14:27:51 +0200
 

Modified: packages/mercurial/trunk/debian/mercurial.postinst
===================================================================
--- packages/mercurial/trunk/debian/mercurial.postinst	2008-07-31 12:35:37 UTC (rev 1628)
+++ packages/mercurial/trunk/debian/mercurial.postinst	2008-07-31 12:44:27 UTC (rev 1629)
@@ -18,10 +18,14 @@
 # the debian-policy package
 
 check_ext() {
-    local file="$1"
-    local ext="$2"
-    local dep="$3"
-    local enable="true"
+    local file
+    local ext
+    local dep
+    local enable
+    file="$1"
+    ext="$2"
+    dep="$3"
+    enable="true"
 
     case "$dep" in
     wish)




More information about the Python-apps-commits mailing list