From: Paweł Sikora Date: Sun, 8 Jan 2006 11:24:23 +0000 (+0000) Subject: - fix mktemp usage. X-Git-Tag: auto/th/klibc-1_1_16-1~1 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fklibc.git;a=commitdiff_plain;h=57972c9c1ce3928fcd79b8a7238b4b86983f2647 - fix mktemp usage. Changed files: klibc-ash-fix-mktemp-syntax.patch -> 1.1 --- diff --git a/klibc-ash-fix-mktemp-syntax.patch b/klibc-ash-fix-mktemp-syntax.patch new file mode 100644 index 0000000..61d154c --- /dev/null +++ b/klibc-ash-fix-mktemp-syntax.patch @@ -0,0 +1,11 @@ +--- klibc-1.1.16/dash/mkbuiltins.orig 2006-01-06 06:11:43.000000000 +0000 ++++ klibc-1.1.16/dash/mkbuiltins 2006-01-08 11:12:00.566097680 +0000 +@@ -37,7 +37,7 @@ + + tempfile=tempfile + if ! type tempfile > /dev/null 2>&1; then +- tempfile=mktemp ++ tempfile='mktemp $0.XXXXXX' + fi + + trap 'rm -f $temp $temp2' EXIT