Avoid failing if the directory already exists (when restarting at customize).

MFC after:	2 days
This commit is contained in:
Nick Hibma 2008-10-09 18:06:28 +00:00
parent 789140c0e7
commit 4fd37ca6b6

View File

@ -281,7 +281,7 @@ setup_nanobsd ( ) (
# have hardcoded paths under ${prefix}/etc are not tweakable.
if [ -d usr/local/etc ] ; then
(
mkdir etc/local
mkdir -p etc/local
cd usr/local/etc
find . -print | cpio -dumpl ../../../etc/local
cd ..