On Thu, Aug 14, 2008 at 01:58:50PM +0200, Jonathan Schleifer wrote:
> Simon Kuhnle <[EMAIL PROTECTED]> wrote:
>
> > @@ -18,5 +10,5 @@
> > - helpers.exec_command('python history_manager.py &')
> > + helpers.exec_command('%s history_manager.py &' %
> > (sys.executable,))
>
> I committed something similar to that to trunk so you don't need that
> patch for the next alpha anymore.
>
> Is that the only one? Never used the port since I always use trunk and
> have a symlink for python.
>
> --
> Jonathan
Oh, nice, thank you :-)
The only other patch patches the gajim starter shellscript to use
/bin/sh and not /bin/bash, so I don't need bash as a dependency.
-#!/bin/bash
+#!/bin/sh
and
-exec -a gajim ${PYTHON_EXEC} -OO gajim.py $@
+exec ${PYTHON_EXEC} -OO gajim.py $@
as the shell doesn't have the -a flag.
No big deal, as -a only changes the name of the process AFAIK.
--
simon