]> git.e2factory.org Git - e2factory.git/commitdiff
There is no r.pseudo_result field anywhere...
authorTobias Ulmer <tu@emlix.com>
Wed, 22 Jan 2014 18:54:58 +0000 (19:54 +0100)
committerTobias Ulmer <tu@emlix.com>
Wed, 16 Nov 2016 14:41:17 +0000 (15:41 +0100)
Signed-off-by: Tobias Ulmer <tu@emlix.com>
local/e2tool.lua

index fc2589d8bab3ea0771bcd954e63db7b24c497ee1..4ce6c853e9767f9104a1fd7d59f0cbd5753cf298 100644 (file)
@@ -2070,18 +2070,17 @@ function e2tool.pbuildid(info, resultname)
     end
     r.envid = envid(info, resultname)
     hash.hash_line(hc, r.envid)
-    if not r.pseudo_result then
-        local location = e2tool.resultbuildscript(info.results[resultname].directory)
-        local f = {
-            server = info.root_server_name,
-            location = location,
-        }
-        local fileid, re = e2tool.fileid(info, f)
-        if not fileid then
-            return false, e:cat(re)
-        end
-        hash.hash_line(hc, fileid)                     -- build script hash
+
+    local location = e2tool.resultbuildscript(info.results[resultname].directory)
+    local f = {
+        server = info.root_server_name,
+        location = location,
+    }
+    local fileid, re = e2tool.fileid(info, f)
+    if not fileid then
+        return false, e:cat(re)
     end
+    hash.hash_line(hc, fileid)                 -- build script hash
 
     for _,f in ipairs(e2tool_ftab.resultid) do
         local rhash, re = f(info, resultname)