Ignore:
Timestamp:
06/01/2006 09:54:18 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
1.0, 2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
b1ea9bb
Parents:
5faab22
Message:

Using fuser instead of pidof to watch that make is alive.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • common/progress_bar.sh

    r5faab22 r46758a2  
    66
    77[[ -z $1 ]] && exit
    8 [[ -z $2 ]] && exit
    98
    109if [ ! -f $1 ] ; then
    11   while [ -d /proc/$2 ] ; do
     10  while fuser -v . 2>&1 | grep make >/dev/null ; do
    1211    echo -n "."
    1312    sleep 1
     13    [[ -f $1 ]] && exit
    1414  done
    1515fi
Note: See TracChangeset for help on using the changeset viewer.