Ah, that's fairly straightforward. To save space, we exclude .pyc files
from the live CD's filesystem. They are re-created on install.
The problem is in /usr/bin/catfish. It should probably be modified to
*only* look in /usr/share/catfish
#!/usr/bin/env bash
APPNAME=catfish
if [ -e $APPNAME.pyc ]
then python $APPNAME.pyc "$@"
else
if [ -e $APPNAME.py ]
then python $APPNAME.py "$@"
else
cd /usr/share/$APPNAME
python $APPNAME.pyc "$@"
fi
fi
** Summary changed:
- Catfish file search will not open
+ Catfish cannot run on the live CD
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1041929
Title:
Catfish cannot run on the live CD
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/catfish/+bug/1041929/+subscriptions
--
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs