Skip to content

Commit

Permalink
bugfixes in the install/uninstall scripts for binary bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
richard42 committed Dec 14, 2009
1 parent ca7a17c commit 92211fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tools/install_binary_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ MANDIR="${6:-${PREFIX}/man/man6}"
printf "Installing Mupen64Plus Binary Bundle to ${PREFIX}\n"
# Mupen64Plus-Core
$INSTALL -d -v "${LIBDIR}"
$INSTALL -m 0644 libmupen64plus.so* "${LIBDIR}"
ldconfig
$INSTALL -m 0644 libmupen64plus.so.2.* "${LIBDIR}"
/sbin/ldconfig
$INSTALL -d -v "${SHAREDIR}"
$INSTALL -m 0644 font.ttf "${SHAREDIR}"
$INSTALL -m 0644 mupen64plus.cht "${SHAREDIR}"
Expand Down
6 changes: 3 additions & 3 deletions tools/uninstall_binary_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ MANDIR="${6:-${PREFIX}/man/man6}"

printf "Uninstalling Mupen64Plus Binary Bundle from ${PREFIX}\n"
# Mupen64Plus-Core
rm -f "${LIBDIR}/libmupen64plus.so*"
ldconfig
rm -f "${LIBDIR}"/libmupen64plus.so*
/sbin/ldconfig
rm -f "${SHAREDIR}/font.ttf"
rm -f "${SHAREDIR}/mupen64plus.cht"
rm -f "${SHAREDIR}/mupen64plus.ini"
rm -f "${SHAREDIR}/m64p_test_rom.v64"
rm -f "${SHAREDIR}/doc/*"
rm -f "${SHAREDIR}"/doc/*
# Mupen64Plus-UI-Console
rm -f "${BINDIR}/mupen64plus"
rm -f "${MANDIR}/mupen64plus.6.gz"
Expand Down

0 comments on commit 92211fe

Please sign in to comment.