diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2016-09-12 11:20:26 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2016-09-12 12:58:31 -0500 |
commit | ac53c9a658589456c678b6bfe674a66a3845e564 (patch) | |
tree | 98ffdef95376c800caf88cf91e94485badba8d77 /sh/init.sh.BSD.in | |
parent | b02ff466fa75cc4b5bcfaff3f2989cc65c823f43 (diff) |
sh/init.sh: fix the test for cache restoration
This fixes the test for cache restoration since we are no longer caching
the dependency tree.
Diffstat (limited to 'sh/init.sh.BSD.in')
-rw-r--r-- | sh/init.sh.BSD.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/init.sh.BSD.in b/sh/init.sh.BSD.in index 6fe0bde6..64282e99 100644 --- a/sh/init.sh.BSD.in +++ b/sh/init.sh.BSD.in @@ -57,7 +57,7 @@ case "$(openrc --sys)" in esac retval=$? -if [ -e "$RC_LIBEXECDIR"/cache/deptree ]; then +if [ -e "$RC_LIBEXECDIR"/cache/softlevel ]; then cp -p "$RC_LIBEXECDIR"/cache/* "$RC_SVCDIR" 2>/dev/null fi |