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.Linux.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.Linux.in')
-rw-r--r-- | sh/init.sh.Linux.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/init.sh.Linux.in b/sh/init.sh.Linux.in index 7d36e7aa..344f627c 100644 --- a/sh/init.sh.Linux.in +++ b/sh/init.sh.Linux.in @@ -85,7 +85,7 @@ if grep -Eq "[[:space:]]+xenfs$" /proc/filesystems; then eend $? fi -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 |