Skip to content

Commit 1871600

Browse files
author
Francisco Redondo Marchena
committed
Use mktemp instead of tempfile
tempfile is not a package in RHEL systems where mktemp is available for all linux distributions.
1 parent 0bf70fd commit 1871600

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

refortranizer

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

3-
TPROG=$(tempfile)
3+
TPROG=$(mktemp)
44
./ofc --sema-tree $1 | gfortran -x f77 - -o $TPROG && $TPROG
55
rm $TPROG

0 commit comments

Comments
 (0)