Diff for /embedaddon/build.sh between versions 1.3 and 1.5

version 1.3, 2011/07/20 12:58:19 version 1.5, 2011/10/31 12:56:54
Line 10 Line 10
 CMD=$1  CMD=$1
 MK=${2:-make}  MK=${2:-make}
 P=${3:-/tmp}  P=${3:-/tmp}
   B=$4
 PFX="--prefix ${P}"  PFX="--prefix ${P}"
shift; shift; shift;shift; shift; shift; shift;
 echo ">>> Working script ${MK} into ${PFX}"  echo ">>> Working script ${MK} into ${PFX}"
   
   if [ -n "${B}" ]; then
           PFX="${PFX} --build ${B}"
   fi
   
 TOP=$(pwd)  TOP=$(pwd)
 echo ">>> TOPDIR=${TOP}"  echo ">>> TOPDIR=${TOP}"
   
Line 21  case $CMD in Line 26  case $CMD in
         sudo)          sudo)
                 cd sudo                  cd sudo
 #               [ ! -r config.log ] && \  #               [ ! -r config.log ] && \
                ./configure --sysconfdir=/etc --with-ignore-dot --with-tty-tickets \                ./configure --sysconfdir=/etc --libexecdir=/usr/libexec --with-ignore-dot \
                                         --with-env-editor --with-logincap \                                        --with-tty-tickets --with-env-editor --with-logincap \
                                         --with-long-otp-prompt --with-pam --with-logfac=local2 ${PFX}                                        --with-long-otp-prompt --with-pam --with-logfac=local2 \
                                         ${PFX}
                 ${MK} clean                  ${MK} clean
                 ${MK}                  ${MK}
                 ${MK} install                  ${MK} install
Line 121  case $CMD in Line 127  case $CMD in
                                 --enable-dhcpv6 ${PFX}                                  --enable-dhcpv6 ${PFX}
                 ${MK} clean                  ${MK} clean
                 ${MK}                  ${MK}
                ${MK} install                install server/dhcpd ${P}/sbin
                 install relay/dhcrelay ${P}/sbin
                 install dhcpctl/omshell ${P}/bin
                 echo ">>> Now rebuild elwix firmware image ..."                  echo ">>> Now rebuild elwix firmware image ..."
                 ;;                  ;;
         dhcping)          dhcping)
Line 196  case $CMD in Line 204  case $CMD in
                 ${MK} install                  ${MK} install
                 echo ">>> Now rebuild elwix firmware image ..."                  echo ">>> Now rebuild elwix firmware image ..."
                 ;;                  ;;
        hping2)        hping)
                cd hping2                cd hping
 #               [ ! -r config.log ] && \  #               [ ! -r config.log ] && \
                 ./configure ${PFX}                  ./configure ${PFX}
                 ${MK} clean                  ${MK} clean

Removed from v.1.3  
changed lines
  Added in v.1.5


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