From d58a4a247854152434191d2889e369740d5782ea Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Tue, 29 Nov 2011 17:03:03 +0100 Subject: [PATCH] Add temporary workaround for moved etc directory. Package management will move the directory from common/etc to common/settings/etc. The kernel side change that sets up the etc symlink in the rootfs was already commited, everything still installs into the old dir however. This symlink makes things that depend on /etc work for now and can be removed once the files aren't populated to the old place anymore. --- build/jam/HaikuImage | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/jam/HaikuImage b/build/jam/HaikuImage index e86139f03c..6d07ba350b 100644 --- a/build/jam/HaikuImage +++ b/build/jam/HaikuImage @@ -455,6 +455,9 @@ profileFiles = $(profileFiles:G=profile-d) ; AddDirectoryToHaikuImage common etc profile.d ; AddFilesToHaikuImage common etc profile.d : $(profileFiles) ; +# TODO: Temporary workaround until package management fully moves the /etc dir +AddSymlinkToHaikuImage common settings : /boot/common/etc ; + #local bashCompletionFiles = [ Glob $(etcDir)/bash_completion.d : * ] ; #local bashCompletionHelperFiles # = [ Glob $(etcDir)/bash_completion.d/helpers : * ] ;