* doc/gen-split-examples-mk,
* doc/gen-split-outputs-mk:
Here.
---
milena/ChangeLog | 8 ++++++++
milena/doc/gen-split-examples-mk | 2 +-
milena/doc/gen-split-outputs-mk | 2 +-
3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index e0e2b19..9f25bf1 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,5 +1,13 @@
2010-03-22 Roland Levillain <roland(a)lrde.epita.fr>
+ Make a more portable use of mktemp.
+
+ * doc/gen-split-examples-mk,
+ * doc/gen-split-outputs-mk:
+ Here.
+
+2010-03-22 Roland Levillain <roland(a)lrde.epita.fr>
+
Sort inputs of generators to make them deterministic w.r.t. outputs.
* doc/gen-split-examples-mk,
diff --git a/milena/doc/gen-split-examples-mk b/milena/doc/gen-split-examples-mk
index cf18241..b505370 100755
--- a/milena/doc/gen-split-examples-mk
+++ b/milena/doc/gen-split-examples-mk
@@ -59,7 +59,7 @@ inputs()
output_dir=examples/split
# Use a temporary file to dump rules at the end of the output.
-tempfile=`mktemp`
+tempfile=`mktemp /tmp/temp.XXXXXX`
# Set up automatic cleanup.
cleanup() { rm -f "$tempfile"; exit; }
trap cleanup 0 1 2 3 6 15
diff --git a/milena/doc/gen-split-outputs-mk b/milena/doc/gen-split-outputs-mk
index 9ab6f42..e7c130b 100755
--- a/milena/doc/gen-split-outputs-mk
+++ b/milena/doc/gen-split-outputs-mk
@@ -60,7 +60,7 @@ inputs()
output_dir=outputs/split
# Use a temporary file to dump rules at the end of the output.
-tempfile=`mktemp`
+tempfile=`mktemp /tmp/temp.XXXXXX`
# Set up automatic cleanup.
cleanup() { rm -f "$tempfile"; exit; }
trap cleanup 0 1 2 3 6 15
--
1.5.6.5