Commit c8ae7abf by Christophe Lyon Committed by Christophe Lyon

check_GNU_style.sh: Remove temporay file upon exit.

2012-10-02   Christophe Lyon  <christophe.lyon@linaro.org>

       * check_GNU_style.sh: Remove temporay file upon exit.

From-SVN: r191954
parent e9453c6a
2012-10-02 Christophe Lyon <christophe.lyon@linaro.org>
* check_GNU_style.sh: Remove temporay file upon exit.
2012-09-26 Joern Rennecke <joern.rennecke@embecosm.com>
* contrib-list.mk (LIST): Remove arm-freebsd6, arm-linux,
......
......@@ -37,6 +37,10 @@ test $# -eq 0 && usage
tmp=check_GNU_style.tmp
# Remove $tmp on exit and various signals.
trap "rm -f $tmp" 0
trap "rm -f $tmp ; exit 1" 1 2 3 5 9 13 15
# Grep
g (){
msg="$1"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment