pmount 0.9.13 will fail to mount dm-crypt+luks volumes, because it searches for
the cryptsetup binary in /sbin instead of /bin.
carcharias rjf # strace -f -e execve pmount /dev/backups 2>&1 | grep cryptsetup
[pid 14193] execve("/sbin/cryptsetup", ["/sbin/cryptsetup", "isLuks",
"/dev/backups"], [/* 67 vars */]) = -1 ENOENT (No such file or directory)
It looks like instead of doing a sed to change the path in src/policy.h, it
will now be necessary to do "econf --with-cryptsetup-prog=/bin/cryptsetup"