summaryrefslogtreecommitdiffstats
path: root/meta/classes/sstate.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r--meta/classes/sstate.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 67ddc466ce..0358d14e9a 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -198,7 +198,7 @@ def sstate_install(ss, d):
198 # Run the actual file install 198 # Run the actual file install
199 for state in ss['dirs']: 199 for state in ss['dirs']:
200 if os.path.exists(state[1]): 200 if os.path.exists(state[1]):
201 oe.path.copytree(state[1], state[2]) 201 oe.path.copyhardlinktree(state[1], state[2])
202 202
203 for postinst in (d.getVar('SSTATEPOSTINSTFUNCS', True) or '').split(): 203 for postinst in (d.getVar('SSTATEPOSTINSTFUNCS', True) or '').split():
204 bb.build.exec_func(postinst, d) 204 bb.build.exec_func(postinst, d)