summarylogtreecommitdiffstats
path: root/fix_package_querying.patch
diff options
context:
space:
mode:
authormaz-12015-10-26 14:51:53 +0800
committermaz-12015-10-26 14:51:53 +0800
commite7602a8d10249f8259895412a1d4e0686091f414 (patch)
tree0cab3af20f0799e58add9fb728bd4e940837b988 /fix_package_querying.patch
parentc46baf8d8325f76a587d234f03899be914682d9e (diff)
downloadaur-e7602a8d10249f8259895412a1d4e0686091f414.tar.gz
bump
Diffstat (limited to 'fix_package_querying.patch')
-rw-r--r--fix_package_querying.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/fix_package_querying.patch b/fix_package_querying.patch
deleted file mode 100644
index 7564929c8513..000000000000
--- a/fix_package_querying.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -Naur a/program/functions.py b/program/functions.py
---- a/program/functions.py 2010-12-04 17:18:57.000000000 +0000
-+++ b/program/functions.py 2015-10-13 09:34:01.093513450 +0000
-@@ -57,7 +57,7 @@
-- a = commands.getoutput( 'dpkg -l' )
-+ a = commands.getoutput( 'pacman -Q' )
- a = a.split( '\n' )
- for each in a:
-- if each[0:2] == 'ii' and each.split()[1] == pkg_name:
-+ if each.split()[0] == pkg_name:
- return True
-
- return False