From 34db2b1918613042adfd8ebaac9fe1352fda1038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20A=C5=9F=C4=B1c=C4=B1?= Date: Tue, 21 Sep 2010 13:25:09 +0000 Subject: [PATCH] build: Fix typo in path collision check --- pisi/operations/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/operations/build.py b/pisi/operations/build.py index e6d66e9a..e19bfec1 100644 --- a/pisi/operations/build.py +++ b/pisi/operations/build.py @@ -105,7 +105,7 @@ def check_path_collision(package, pkgList): # path.path: /usr/share/doc if (create_static and path.path.endswith(ar_suffix)) or \ - (create_static and path.path.endswith(debug_suffix)): + (create_debug and path.path.endswith(debug_suffix)): # don't throw collision error for these files. # we'll handle this in gen_files_xml.. continue