opkg: the current version leaves empty temp directories behind, clean them up before exit
SVN-Revision: 18872
This commit is contained in:
parent
95e0fd88c3
commit
908bdfd435
1 changed files with 12 additions and 0 deletions
12
package/opkg/patches/012-cleanup-tmpdir.patch
Normal file
12
package/opkg/patches/012-cleanup-tmpdir.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
--- a/src/opkg-cl.c
|
||||
+++ b/src/opkg-cl.c
|
||||
@@ -333,6 +333,9 @@
|
||||
print_error_list();
|
||||
free_error_list();
|
||||
|
||||
+ if( conf->tmp_dir )
|
||||
+ rm_r(conf->tmp_dir);
|
||||
+
|
||||
return 0;
|
||||
|
||||
err2:
|
Loading…
Reference in a new issue