Diff for /elwix/config/rc.subr between versions 1.11 and 1.11.2.1

version 1.11, 2021/03/11 13:59:50 version 1.11.2.1, 2021/03/17 21:27:33
Line 226  InstallList() Line 226  InstallList()
         sed -nE -e 's/^ *([^ #]+) */\1/p' < $1 | tr ':' '\n' >$TMPFILE          sed -nE -e 's/^ *([^ #]+) */\1/p' < $1 | tr ':' '\n' >$TMPFILE
         cd $2          cd $2
         for i in $(cat $TMPFILE); do          for i in $(cat $TMPFILE); do
                   if [ ! -f $i ]; then
                           rm -f $TMPFILE
                           echo "Error:: File not found $i"
                           exit 1
                   fi
                 if [ -x $i ]; then                  if [ -x $i ]; then
                         echo "Strip '$i'"                          echo "Strip '$i'"
                         ${CEXEC} chflags -f noschg $i                          ${CEXEC} chflags -f noschg $i

Removed from v.1.11  
changed lines
  Added in v.1.11.2.1


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