From e782e6ace236a1b0553392a8f52da90171df86c2 Mon Sep 17 00:00:00 2001 From: Faik Uygur Date: Mon, 2 Feb 2009 13:42:40 +0000 Subject: [PATCH] revert this change, it was true, wrongly read... --- pisi/operations/build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pisi/operations/build.py b/pisi/operations/build.py index e31410c3..2e922cc0 100644 --- a/pisi/operations/build.py +++ b/pisi/operations/build.py @@ -709,7 +709,8 @@ class Builder: # find previous build in packages dir found = set() def locate_old_package(old_package_fn): - if not old_package_fn.endswith(ctx.const.package_suffix): + if not old_package_fn.endswith(ctx.const.package_suffix) or \ + old_package_fn.endswith(ctx.const.delta_package_suffix): return if pisi.util.is_package_name(os.path.basename(old_package_fn), package_name):