mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 21:09:28 +00:00
Create the various required directories if they don't exist.
This commit is contained in:
parent
e4475bb03f
commit
1f374a7c54
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68603
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user