1.0
2.3
2.3.x
2.4
ablfs
ablfs-more
legacy
new_features
trunk
Last change
on this file since c665386 was 46758a2, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago |
Using fuser instead of pidof to watch that make is alive.
|
-
Property mode
set to
100755
|
File size:
186 bytes
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | # $Id$
|
---|
4 |
|
---|
5 | set -e
|
---|
6 |
|
---|
7 | [[ -z $1 ]] && exit
|
---|
8 |
|
---|
9 | if [ ! -f $1 ] ; then
|
---|
10 | while fuser -v . 2>&1 | grep make >/dev/null ; do
|
---|
11 | echo -n "."
|
---|
12 | sleep 1
|
---|
13 | [[ -f $1 ]] && exit
|
---|
14 | done
|
---|
15 | fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.