diff options
author | tnn <tnn@pkgsrc.org> | 2010-07-05 08:14:42 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2010-07-05 08:14:42 +0000 |
commit | af9d5489b5057068cb935ca1383baba0c1d65a9b (patch) | |
tree | cfe0b874ec0d92cd1d291c37327a49a2154d80e9 /x11/tint2/patches/patch-ac | |
parent | 5e409b6b83255354f67a92c7c1e5b16fc6e01b79 (diff) | |
download | pkgsrc-af9d5489b5057068cb935ca1383baba0c1d65a9b.tar.gz |
fix linuxism
Diffstat (limited to 'x11/tint2/patches/patch-ac')
-rw-r--r-- | x11/tint2/patches/patch-ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/x11/tint2/patches/patch-ac b/x11/tint2/patches/patch-ac new file mode 100644 index 00000000000..9ebe730acf5 --- /dev/null +++ b/x11/tint2/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2010/07/05 08:14:42 tnn Exp $ + +--- src/tint2conf/tintwizard.py.orig 2010-05-09 19:00:13.000000000 +0000 ++++ src/tint2conf/tintwizard.py +@@ -1112,7 +1112,7 @@ class TintWizardGUI(gtk.Window): + def apply(self, widget, event=None, confirmChange=True): + """Applies the current config to tint2.""" + # Check if tint2 is running +- procs = os.popen('pidof "tint2"') # Check list of active processes for tint2 ++ procs = os.popen('pgrep "^tint2$"') # Check list of active processes for tint2 + pids = [] # List of process ids for tint2 + + for proc in procs.readlines(): |