Create the various required directories if they don't exist.

This commit is contained in:
David E. O'Brien 2000-11-11 07:11:36 +00:00
parent e4475bb03f
commit 1f374a7c54
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68603

View File

@ -47,6 +47,16 @@ if ! ${work_dir}/scripts/build_x.sh ${work_dir}/tmp; then
exit 1
fi
if ! mkdir -p ${plist_dir}; then
echo "Could not create plist dir [${plist_dir}]!"
echo
usage
fi
if ! mkdir -p ${tarball_dir}; then
echo "Could not create tarball dir [${tarball_dir}]!"
echo
usage
fi
# now package it up into tarballs
if ! ${work_dir}/scripts/generate_tarballs.sh \
${work_dir}/tmp/usr/X11R6 ${plist_dir} ${tarball_dir}; then