diff options
| author | Bruno Haible <bruno@clisp.org> | 2005-09-19 16:13:47 +0000 |
|---|---|---|
| committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:12:51 +0200 |
| commit | ee8fd2262a2e3e2a95d81b6d13d99baf6dbf3ee1 (patch) | |
| tree | 726622a42f69e43ffd34544682f20da722af3354 | |
| parent | b11e5a0cb9f7bec9fcff3edaf69e90362f3e3752 (diff) | |
| download | external_gettext-ee8fd2262a2e3e2a95d81b6d13d99baf6dbf3ee1.zip external_gettext-ee8fd2262a2e3e2a95d81b6d13d99baf6dbf3ee1.tar.gz external_gettext-ee8fd2262a2e3e2a95d81b6d13d99baf6dbf3ee1.tar.bz2 | |
Really remove the temporary directory after use.
| -rw-r--r-- | gettext-tools/misc/ChangeLog | 6 | ||||
| -rw-r--r-- | gettext-tools/misc/autopoint.in | 2 | ||||
| -rw-r--r-- | gettext-tools/misc/gettextize.in | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gettext-tools/misc/ChangeLog b/gettext-tools/misc/ChangeLog index 30e266b..a13287c 100644 --- a/gettext-tools/misc/ChangeLog +++ b/gettext-tools/misc/ChangeLog @@ -1,3 +1,9 @@ +2005-09-18 Bruno Haible <bruno@clisp.org> + + * 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 <bruno@clisp.org> * 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 93014be..71f8947 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 dca7e7d..b9f2998 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 |
