summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/depgraph.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge/depgraph.py')
-rw-r--r--pym/_emerge/depgraph.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
index ae7b21133..a3eee8e25 100644
--- a/pym/_emerge/depgraph.py
+++ b/pym/_emerge/depgraph.py
@@ -2783,7 +2783,8 @@ class depgraph(object):
if "--rebuilt-binaries-timestamp" in self._frozen_config.myopts:
minimal_timestamp = self._frozen_config.myopts["--rebuilt-binaries-timestamp"]
- if built_timestamp > installed_timestamp and \
+ if built_timestamp and \
+ built_timestamp > installed_timestamp and \
built_timestamp >= minimal_timestamp:
return built_pkg, built_pkg
else:
@@ -2791,7 +2792,8 @@ class depgraph(object):
#package. This is for closely tracking a binhost.
#Use --rebuilt-binaries-timestamp 0 if you want only newer binaries
#pulled in here.
- if built_timestamp != installed_timestamp:
+ if built_timestamp and \
+ built_timestamp != installed_timestamp:
return built_pkg, built_pkg
if avoid_update: