1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-24 23:22:27 +01:00

Use the system python instead of a local one (which may be referenced inside the scripts that call wicd). Thanks to Russel O'Connor.

This commit is contained in:
Andrew Psaltis
2009-12-27 22:22:09 -05:00
parent a098c2a9c5
commit e3462495f4
4 changed files with 4 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
#!/bin/bash
exec python -O %LIB%wicd-cli.py $@
exec %PYTHON% -O %LIB%wicd-cli.py $@

View File

@@ -41,5 +41,5 @@ EOF
fi
else
exec python -O %LIB%wicd-client.py $@
exec %PYTHON% -O %LIB%wicd-client.py $@
fi

View File

@@ -6,4 +6,4 @@ if [ -e "%VARLIB%WHEREAREMYFILES" ] && [ ! -L "$HOME/.wicd/WHEREAREMYFILES" ]; t
ln -s "%VARLIB%WHEREAREMYFILES" "$HOME/.wicd/WHEREAREMYFILES"
fi
exec python -O %LIB%wicd-curses.py $@
exec %PYTHON% -O %LIB%wicd-curses.py $@

View File

@@ -1,3 +1,3 @@
#!/bin/bash
exec python -O %LIB%wicd-daemon.py $@
exec %PYTHON% -O %LIB%wicd-daemon.py $@