Package: vifm Version: 0.4-1 Severity: normal Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu maverick ubuntu-patch
This bug was originally reported on Launchpad: https://bugs.launchpad.net/ubuntu/+source/vifm/+bug/615563 The pauseme file was renamed to avoid conflict with another package, but not all references to it were updated. This is a simple one-line fix to update the bad reference. *** /tmp/tmpkuyU6E In Ubuntu, we've applied the attached patch to achieve the following: * src/commands.c: replaced remaining pauseme reference with vifm- pauseme We thought you might be interested in doing the same. -- System Information: Debian Release: squeeze/sid APT prefers maverick-updates APT policy: (500, 'maverick-updates'), (500, 'maverick-security'), (500, 'maverick') Architecture: i386 (i686) Kernel: Linux 2.6.35-14-generic (SMP w/2 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -u vifm-0.4/src/commands.c vifm-0.4/src/commands.c --- vifm-0.4/src/commands.c +++ vifm-0.4/src/commands.c @@ -714,7 +714,7 @@ else { if(pause) - snprintf(buf, sizeof(buf), "sh -c \"pauseme %s\"", command); + snprintf(buf, sizeof(buf), "sh -c \"vifm-pauseme %s\"", command); else snprintf(buf, sizeof(buf), "sh -c \"%s\"", command); } diff -u vifm-0.4/debian/changelog vifm-0.4/debian/changelog