From: Jakub Bogusz Date: Fri, 17 Jun 2005 22:35:16 +0000 (+0000) Subject: - obsolete X-Git-Tag: auto/ac/shtool-2_0_2-1~1 X-Git-Url: https://git.pld-linux.org/?p=packages%2Fshtool.git;a=commitdiff_plain;h=7bbdd5e678b53c0d57ce2c745346d48cf4b8206e - obsolete Changed files: shtool-tempfile.patch -> 1.2 --- diff --git a/shtool-tempfile.patch b/shtool-tempfile.patch deleted file mode 100644 index 26c9fca..0000000 --- a/shtool-tempfile.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff -urN shtool-2.0.1.orig/sh.common shtool-2.0.1/sh.common ---- shtool-2.0.1.orig/sh.common 2005-05-30 10:40:50.476241904 +0200 -+++ shtool-2.0.1/sh.common 2005-05-30 10:41:22.420385656 +0200 -@@ -168,7 +168,13 @@ - else - tmpdir="/tmp" - fi -- tmpfile="$tmpdir/.shtool.$$" -+ if mkdir "$tmpdir/.shtool.$$"; then -+ tmpfile="$tmpdir/.shtool.$$/shtool.tmp" -+ else -+ echo "$msgprefix:Error: failed to create temporary file" 1>&2 -+ exit 1 -+ fi -+ tmpfile="$tmpdir/.shtool.$$/shtool.tmp" - rm -f $tmpfile >/dev/null 2>&1 - touch $tmpfile - chmod 600 $tmpfile -@@ -188,7 +194,7 @@ - shtool_exit () { - rc="$1" - if [ ".$gen_tmpfile" = .yes ]; then -- rm -f $tmpfile >/dev/null 2>&1 || true -+ rm -fr "$tmpdir/.shtool.$$" >/dev/null 2>&1 || true - fi - exit $rc - }