Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Don't try to kill non-existing process (*process == NULL).
[simgrid.git] / src / smpi / patch_source.sh
index 9b4319686d03e07714ab37214468e821a6653df0..38fd74593fd5ff89d5724ca57f7a27a236de62fa 100755 (executable)
@@ -1,7 +1,16 @@
 #!/bin/bash
+
+# Copyright (c) 2011, 2014. The SimGrid Team.
+# All rights reserved.
+
+# This program is free software; you can redistribute it and/or modify it
+# under the terms of the license (GNU LGPL) which comes with this package.
+
 INFILE="$1"
 OUTFILE="$2"
 SPFILE="replace_globals.cocci"
-spatch -sp_file ${SPFILE} $1 -o $2.tmp >/dev/null 2>/dev/null
-./fixsrc.pl < $2.tmp > $2
-rm $2.tmp
+TMPFILE=`mktemp ${OUTFILE}.XXXX`
+
+trap "rm -f ${TMPFILE}" EXIT
+spatch -sp_file ${SPFILE} ${INFILE} -o ${TMPFILE} >/dev/null 2>/dev/null
+./fixsrc.pl < ${TMPFILE} > ${OUTFILE}