2016-04-30 19:31 GMT+09:00 Bram Moolenaar <[email protected]>: > > Kazunobu Kuriyama wrote: > > > Recently `make uninstall` hasn’t been done well, leaving `$prefix/vim/*` > > behind after it is executed. > > > > In fact, `make uninstall_runtime` doesn’t take account of `rgb.txt` which > > has been installed at place since Patch 7.4.1775. > > > > Attached is a patch for fixing the issue, which I hope goes well with > that > > patch. > > Thanks. Really only one line needed? >
The `rgb.txt` that wasn't removed by `make uninstall` caused `rmdir` to result in "directory not empty" errors, and thus `$prefix/vim/` and its subdirectories were left behind after the uninstallation, though those errors were ignored by `make` thanks to the `-` prefix, and `make` went on and finish the rest of the uninstallation procedure normally. Hence, only removing the rgb.txt should be OK to complete the procedure. In case something goes wrong with the patch, I'll look into it. :) - Kazunobu > > -- > I bought a book on hair loss, but the pages kept falling out. > > /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net > \\\ > /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ > \\\ > \\\ an exciting new programming language -- http://www.Zimbu.org > /// > \\\ help me help AIDS victims -- http://ICCF-Holland.org > /// > -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
