mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 21:19:54 +00:00
* observer.sh: Use different temporary file name depending on mode
of operation to avoid clash during parallel build.
This commit is contained in:
parent
3b1fcf963b
commit
99efcb59ee
@ -1,3 +1,8 @@
|
||||
2005-07-07 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* observer.sh: Use different temporary file name depending on mode
|
||||
of operation to avoid clash during parallel build.
|
||||
|
||||
2005-07-06 Bob Rossi <bob@brasko.net>
|
||||
|
||||
* fork-child.c (fork-inferior): Use accessor function for
|
||||
|
@ -9,7 +9,11 @@ fi
|
||||
lang=$1 ; shift
|
||||
texi=$1 ; shift
|
||||
o=$1
|
||||
otmp="`echo $1 | sed -e 's,\.[^.]*$,,'`.tmp"; shift
|
||||
case $lang in
|
||||
h) tmp=htmp ;;
|
||||
inc) tmp=itmp ;;
|
||||
esac
|
||||
otmp="`echo $1 | sed -e 's,\.[^.]*$,,'`.$tmp"; shift
|
||||
echo "Creating ${otmp}" 1>&2
|
||||
rm -f ${otmp}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user