diff options
author | V3n3RiX <venerix@rogentos.ro> | 2015-07-26 19:57:10 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2015-07-26 19:57:10 +0100 |
commit | cc8ebada17eb365c21625b4c64b04115c0580fde (patch) | |
tree | 7d764a42923e96c5654207eb02121d9fa06b0eef /gnome-extra/cinnamon/files/lspci.patch | |
parent | 6927177a7ec90d5fc35926b7da45c0886673bc50 (diff) |
clean some deprecated ebuilds...no distfiles available anymore
Diffstat (limited to 'gnome-extra/cinnamon/files/lspci.patch')
-rw-r--r-- | gnome-extra/cinnamon/files/lspci.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gnome-extra/cinnamon/files/lspci.patch b/gnome-extra/cinnamon/files/lspci.patch deleted file mode 100644 index d34e8b4c..00000000 --- a/gnome-extra/cinnamon/files/lspci.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- a/files/usr/lib/cinnamon-settings/modules/cs_info.py -+++ b/files/usr/lib/cinnamon-settings/modules/cs_info.py -@@ -31,12 +31,12 @@ def getProcessOut(command): - def getGraphicsInfos(): - cards = {} - count = 0 -- for card in getProcessOut(("lspci")): -+ for card in getProcessOut(("/usr/sbin/lspci")): - if not "VGA" in card: - continue - cardId = card.split()[0] - cardName = None -- for line in getProcessOut(("lspci", "-v", "-s", cardId)): -+ for line in getProcessOut(("/usr/sbin/lspci", "-v", "-s", cardId)): - if line.startswith(cardId): - cardName = (line.split(":")[2].split("(rev")[0].strip()) - |