wicd should no longer write into the nix store.
But it doesn't compile optimized bytecode. :( I would be good if someone who actually knew python could give this package some love. svn path=/nixpkgs/trunk/; revision=26742
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
With optimizations on, python will overwrite the nix store.
|
||||
|
||||
--- wicd-1.7.0/in/scripts=wicd.in 2011-04-05 14:31:09.733096865 -0400
|
||||
+++ wicd-1.7.0/in/scripts=wicd.in 2011-04-05 14:31:16.397096864 -0400
|
||||
@@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
-exec %PYTHON% -O %SHARE%daemon/wicd-daemon.py $@
|
||||
+exec %PYTHON% -B %SHARE%daemon/wicd-daemon.py $@
|
||||
|
||||
--- wicd-1.7.1b2/wicd/wicd-daemon.py.old 2011-04-07 08:28:38.668311226 -0400
|
||||
+++ wicd-1.7.1b2/wicd/wicd-daemon.py 2011-04-07 08:28:59.111311223 -0400
|
||||
@@ -1806,7 +1806,7 @@
|
||||
wicd_bus = dbus.service.BusName('org.wicd.daemon', bus=bus)
|
||||
daemon = WicdDaemon(wicd_bus, auto_connect=auto_connect)
|
||||
if not no_poll:
|
||||
- child_pid = Popen([misc.find_path("python2"), "-O",
|
||||
+ child_pid = Popen([misc.find_path("python2"), "-B",
|
||||
os.path.join(wpath.daemon, "monitor.py")],
|
||||
shell=False, close_fds=True).pid
|
||||
atexit.register(on_exit, child_pid)
|
||||
Reference in New Issue
Block a user