components/hplip/patches/08_posix.ps.patch
branchs11-update
changeset 3935 177c89f1f2cf
child 4923 b9e3f6b6a101
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/hplip/patches/08_posix.ps.patch	Mon Mar 09 09:16:01 2015 -0700
@@ -0,0 +1,13 @@
+Home brewed patch
+
+--- a/base/utils.py	2014-06-02 23:33:10.000000000 -0700
++++ hplip-3.14.6/base/utils.py	2014-07-01 13:44:00.526366599 -0700
+@@ -2214,7 +2214,7 @@
+ 
+     try:
+         process = {}
+-        p1 = Popen(["ps", "-w", "-w", "aux"], stdout=PIPE)
++        p1 = Popen(["ps", "-ef"], stdout=PIPE)
+         p2 = Popen(["grep", process_name], stdin=p1.stdout, stdout=PIPE)
+         p3 = Popen(["grep", "-v", "grep"], stdin=p2.stdout, stdout=PIPE)
+         output = p3.communicate()[0]