diff -u sgmltools-lite-3.0.3.0.cvs.20010909/debian/changelog sgmltools-lite-3.0.3.0.cvs.20010909/debian/changelog --- sgmltools-lite-3.0.3.0.cvs.20010909/debian/changelog +++ sgmltools-lite-3.0.3.0.cvs.20010909/debian/changelog @@ -1,3 +1,12 @@ +sgmltools-lite (3.0.3.0.cvs.20010909-13ubuntu1) hardy; urgency=low + + * src/python/utils.py: + - Invoke bash explicitly to avoid OSError exceptions (LP: #178669) + * debian/control: + - Update Maintainer field as per spec + + -- Luca Falavigna Sat, 29 Dec 2007 20:46:15 +0100 + sgmltools-lite (3.0.3.0.cvs.20010909-13) unstable; urgency=low * debian/rules: made sure that the argument of --with-dbimages diff -u sgmltools-lite-3.0.3.0.cvs.20010909/debian/control sgmltools-lite-3.0.3.0.cvs.20010909/debian/control --- sgmltools-lite-3.0.3.0.cvs.20010909/debian/control +++ sgmltools-lite-3.0.3.0.cvs.20010909/debian/control @@ -1,7 +1,8 @@ Source: sgmltools-lite Section: text Priority: optional -Maintainer: Oohara Yuuma +Maintainer: Ubuntu Core Developers +XSBC-Original-Maintainer: Oohara Yuuma Standards-Version: 3.5.2 Package: sgmltools-lite only in patch2: unchanged: --- sgmltools-lite-3.0.3.0.cvs.20010909.orig/src/python/utils.py +++ sgmltools-lite-3.0.3.0.cvs.20010909/src/python/utils.py @@ -365,7 +365,7 @@ def mv(self, src, dest): """Shorthand for the pattern trace('mv...);os.system("mv...).""" - self.system("mv %s %s" % (shellProtect(src), shellProtect(dest))) + self.system("bash -c \"mv %s %s\"" % (shellProtect(src), shellProtect(dest))) # # License information printer