commit d5113091e6d8696299b028bb14b18abc357e208d
parent 4958a409a4ae0dcee8a95b36ec34af93cf528e54
Author: Daniel Bainton <dpb@driftaway.org>
Date: Wed, 26 Mar 2014 21:31:37 +0000
Use find instead of ls to get the path right
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/fs/mkfile b/fs/mkfile
@@ -19,18 +19,18 @@ INSTALL_DIRS = \
/bin/svc.d/avail \
/bin/svc.d/default
-INSTALL_BIN = `{ls bin}
+INSTALL_BIN = `{find bin -type f}
INSTALL_SYMLINKS = \
. /usr \
bin /sbin \
../tmp /var/tmp
-INSTALL_OTHER1 = `{ls svc.d}
+INSTALL_OTHER1 = `{find svc.d -type f}
INSTALL_OTHER1_DIR = /bin/svc.d
-INSTALL_OTHER2 = `{ls etc/}
+INSTALL_OTHER2 = `{find etc -type f}
INSTALL_OTHER2_DIR = /etc
-INSTALL_OTHER3 = `{ls skel}
+INSTALL_OTHER3 = `{find skel -type f}
INSTALL_OTHER3_DIR = /etc/skel
INSTALL_PERMISSIONS = \