removed changes to progress_bar.. not reliable
This commit is contained in:
parent
60a5064f8e
commit
e5d0f277fc
1 changed files with 2 additions and 3 deletions
|
@ -21,9 +21,8 @@ declare -a GRAPHIC_STR="| / - \\ + "
|
|||
declare -i SEC=0 # Seconds accumulator
|
||||
declare -i PREV_SEC=0
|
||||
|
||||
mypid=$$
|
||||
# A small ugly.. who is my parent *not root
|
||||
makePID=`(cat /proc/$mypid/stat) | cut -d " " -f5`
|
||||
makePID=$(fuser -v . 2>&1 | grep make)
|
||||
makePID=$(echo $makePID | cut -d" " -f2)
|
||||
|
||||
write_or_exit() {
|
||||
# make has been killed or failed or run to completion, leave
|
||||
|
|
Reference in a new issue