Fix the uninstall procedure for Lua - the man pages are installed into

/usr/local/man/man1, not /usr/local/man.

svn path=/trunk/; revision=50458
This commit is contained in:
Guy Harris 2013-07-09 08:47:05 +00:00
parent 06f748c0b5
commit c72d5f08fb
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ uninstall() {
(cd /usr/local/bin; $DO_RM -f lua luac)
(cd /usr/local/include; $DO_RM -f lua.h luaconf.h lualib.h lauxlib.h lua.hpp)
(cd /usr/local/lib; $DO_RM -f liblua.a)
(cd /usr/local/man; $DO_RM -f lua.1 luac.1)
(cd /usr/local/man/man1; $DO_RM -f lua.1 luac.1)
cd lua-$LUA_VERSION
make clean || exit 1
cd ..