1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: replace 'tempfile' with 'mktemp'
Author: IOhannes m zmölnig
Origin: Debian
Forwarded: no
Last-Update: 2021-09-08
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- pdp.orig/scaf/compiler/scafc
+++ pdp/scaf/compiler/scafc
@@ -34,7 +34,7 @@
fi
fi
-TMP_S=`tempfile -s .S`
+TMP_S=`mktemp --suffix .S`
$SCAFDIR/scafc.pl -I$SCAFDIR $1 > $TMP_S \
&& cat $TMP_S \
&& gcc -x assembler-with-cpp -I$SCAFDIR -shared -o $DEST $TMP_S \
|