diff options
author | jhb <jhb@FreeBSD.org> | 2001-09-04 22:54:13 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-09-04 22:54:13 +0000 |
commit | 56f948a181f7da844c8f5138493b2c165ef55c4a (patch) | |
tree | b7a6e1763a79af8e5ed713cc0ce20a9955b3a684 /release/scripts | |
parent | cf8c0327c01334871394ecb884d0395bce015e04 (diff) | |
download | FreeBSD-src-56f948a181f7da844c8f5138493b2c165ef55c4a.zip FreeBSD-src-56f948a181f7da844c8f5138493b2c165ef55c4a.tar.gz |
- Add some diagnostic echos of status of each stage.
Diffstat (limited to 'release/scripts')
-rwxr-xr-x | release/scripts/X11/build_x.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/release/scripts/X11/build_x.sh b/release/scripts/X11/build_x.sh index 7315859..f32da1b 100755 --- a/release/scripts/X11/build_x.sh +++ b/release/scripts/X11/build_x.sh @@ -41,6 +41,7 @@ fi # setup the output directory output_dir=$2 +echo ">>> preparing output directory: ${output_dir}" case $output_dir in /*) ;; @@ -68,6 +69,7 @@ fi # setup the work directory work_dir=$1 +echo ">>> preparing work directory: ${work_dir}" if [ -r ${work_dir} ]; then if ! rm -rf ${work_dir}; then echo "Could not remove ${work_dir}!" @@ -97,6 +99,7 @@ if ! mkdir ${work_dir}/ports; then fi # check out the XFree86 and XFree86-contrib ports and set them up +echo ">>> checking out ports" if ! ( cd ${work_dir}/ports && \ cvs -R -d ${CVSROOT} co -P XFree86 XFree86-contrib ); then echo "Could not checkout the XFree86 port!" @@ -104,6 +107,7 @@ if ! ( cd ${work_dir}/ports && \ usage fi if [ -r XF86.patch ]; then + echo ">>> patching ports" if ! patch -d ${work_dir}/ports/XFree86 < XF86.patch; then echo "Could not patch the XFree86 port!" echo @@ -112,6 +116,7 @@ if [ -r XF86.patch ]; then fi # actually build X +echo ">>> building X" if ! ( cd ${work_dir}/ports/XFree86 && \ make BUILD_XDIST=yes DISTDIR=/usr/ports/distfiles \ DESTDIR=${work_dir}/base NO_PKG_REGISTER=yes all install ); then @@ -128,6 +133,7 @@ if ! ( cd ${work_dir}/ports/XFree86-contrib && \ fi # now package up the bindists +echo ">>> building bindist" bindist_dir=${work_dir}/ports/XFree86/work/xc/programs/Xserver/hw/xfree86/etc/bindist if ! cp ${bindist_dir}/FreeBSD-ELF/* ${work_dir}/dist; then echo "Could not copy over distribution lists!" |