From 73d8b2456c598efaf5242d029d01750da4ee8445 Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Wed, 16 May 2012 10:11:49 +0100 Subject: create-fhs-dirs: var/run back to being a directory This doesn't work when building using a staging area, since it already has a /var/run directory, which tar won't replace with a symlink. dbus also creates a directory in /var/run, so it may not cope with being ephemeral. --- create-fhs-dirs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-fhs-dirs b/create-fhs-dirs index 498db05..d94e5f0 100755 --- a/create-fhs-dirs +++ b/create-fhs-dirs @@ -78,6 +78,7 @@ var/cache var/lib var/lock var/log +var/run var/spool var/tmp " @@ -90,7 +91,6 @@ done while read link name; do ln -s "$link" "$target/$name" done <