From: Bruno Haible Date: Mon, 19 Sep 2005 16:13:47 +0000 (+0000) Subject: Really remove the temporary directory after use. X-Git-Tag: v0.15~394 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee8fd2262a2e3e2a95d81b6d13d99baf6dbf3ee1;p=thirdparty%2Fgettext.git Really remove the temporary directory after use. --- diff --git a/gettext-tools/misc/ChangeLog b/gettext-tools/misc/ChangeLog index 30e266b2a..a13287c0f 100644 --- a/gettext-tools/misc/ChangeLog +++ b/gettext-tools/misc/ChangeLog @@ -1,3 +1,9 @@ +2005-09-18 Bruno Haible + + * autopoint.in (func_find_curr_installdir): Really remove the temporary + directory after use. + * gettextize.in (func_find_curr_installdir): Likewise. + 2005-08-26 Bruno Haible * po-mode.el (po-team-name-to-code): Add support for Old English, diff --git a/gettext-tools/misc/autopoint.in b/gettext-tools/misc/autopoint.in index 93014beeb..71f89478f 100644 --- a/gettext-tools/misc/autopoint.in +++ b/gettext-tools/misc/autopoint.in @@ -79,7 +79,7 @@ func_find_curr_installdir () else PATH_SEPARATOR=: fi - rm -f "$tmp" + rm -rf "$tmp" fi save_IFS="$IFS"; IFS="$PATH_SEPARATOR" for dir in $PATH; do diff --git a/gettext-tools/misc/gettextize.in b/gettext-tools/misc/gettextize.in index dca7e7dbe..b9f29981a 100644 --- a/gettext-tools/misc/gettextize.in +++ b/gettext-tools/misc/gettextize.in @@ -79,7 +79,7 @@ func_find_curr_installdir () else PATH_SEPARATOR=: fi - rm -f "$tmp" + rm -rf "$tmp" fi save_IFS="$IFS"; IFS="$PATH_SEPARATOR" for dir in $PATH; do