#!/bin/sh
#
# Install whatever files are in ${.CURDIR}/Files
#
# Copyright (c) 2004 Poul-Henning Kamp
#
# See /usr/share/examples/etc/bsd-style-copyright for license terms.
#
# $FreeBSD: stable/5/tools/tools/nanobsd/Customize/files 146436 2005-05-20 09:51:46Z phk $
#
# Usage:
# ${CUSTOMIZE} ${WD} ${WORLDDIR} ${.CURDIR} [ ${LOCAL_FILES_LIST} ]

cd $3/Files
find . -print | cpio -dumpv $1
