Package: dvorak7min Version: 1.6.1-8 Severity: normal Tags: patch User: [EMAIL PROTECTED] Usertags: origin-ubuntu ubuntu-patch hardy
Hello, dvorak7min has an Ubuntu change which wasn't forwarded to Debian yet. It's a fix for a bug reported in launchpad (see https://launchpad.net/bugs/2985): ,----[ LP bug 2985 ]- | scripts in /usr/share/doc/dvorak7min/examples/ source non-existant file | | /usr/share/doc/dvorak7min/examples/aoeu and | /usr/share/doc/dvorak7min/examples/asdf both source | /etc/kmap.conf which doesn't exist. | | /usr/share/doc/dvorak7min/examples/kmap.conf exists. | | Perhaps they should source that instead. `---- And here is also the applied patch to fix it. Michael diff -pruN 1.6.1-8/debian/aoeu 1.6.1-8ubuntu1/debian/aoeu --- 1.6.1-8/debian/aoeu 2007-11-21 18:42:57.000000000 +0000 +++ 1.6.1-8ubuntu1/debian/aoeu 2007-11-21 18:42:57.000000000 +0000 @@ -1,6 +1,6 @@ #!/bin/bash -source /etc/kmap.conf +source `dirname $0`/kmap.conf maptype=`basename $0` diff -pruN 1.6.1-8/debian/asdf 1.6.1-8ubuntu1/debian/asdf --- 1.6.1-8/debian/asdf 2007-11-21 18:42:57.000000000 +0000 +++ 1.6.1-8ubuntu1/debian/asdf 2007-11-21 18:42:57.000000000 +0000 @@ -1,6 +1,6 @@ #!/bin/bash -source /etc/kmap.conf +source `dirname $0`/kmap.conf maptype=`basename $0` -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

