summaryrefslogtreecommitdiff
path: root/macosx-setup.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-07-09 08:47:05 +0000
committerGuy Harris <guy@alum.mit.edu>2013-07-09 08:47:05 +0000
commitc72d5f08fb1cd1de05d7496623a519b0130e8249 (patch)
tree8d7bbb0ac283824a750542ea64a77fb600cfd37b /macosx-setup.sh
parent06f748c0b56fb77a015ea1c909162cd5d34f79fa (diff)
downloadwireshark-c72d5f08fb1cd1de05d7496623a519b0130e8249.tar.gz
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
Diffstat (limited to 'macosx-setup.sh')
-rwxr-xr-xmacosx-setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx-setup.sh b/macosx-setup.sh
index 7f654f3908..4ac60ed594 100755
--- a/macosx-setup.sh
+++ b/macosx-setup.sh
@@ -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 ..