Diff for /elwix/Attic/build_package.sh between versions 1.1 and 1.1.2.1

version 1.1, 2012/03/19 21:37:22 version 1.1.2.1, 2012/03/19 21:37:22
Line 0 Line 1
   #!/bin/sh
   #
   # ELWIX build script for ELWIX packages
   #
   # (C) AITNET ltd - Sofia/Bulgaria <office@aitnet.org>
   #    by Michael Pounov <misho@elwix.org>
   #
   # $Id$
   #
   
   [ -r ./config/rc.pkg ] && . ./config/rc.pkg
   [ -r ./config/rc.elwix ] && . ./config/rc.elwix
   if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then
           echo
           echo "ELWIX project is not configured !?!"
           echo
           exit 1
   fi
   
   if [ ! -d $BSDSRC ]; then
           echo
           echo "ELWIX project is not configured - missing BSD sources !?!"
           echo
           exit 1
   fi
   
   if [ ! -d $DEST ]; then
           echo
           echo "ELWIX project is not configured - missing Dest directory !?!"
           echo
           exit 1
   fi
   
   

Removed from v.1.1  
changed lines
  Added in v.1.1.2.1


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>