From 37aeabe092f87b883f8a0772c0b29d606485ceec Mon Sep 17 00:00:00 2001 From: Logan McNaughton Date: Fri, 28 Feb 2020 19:57:50 -0700 Subject: [PATCH] small fix --- build.sh | 2 +- clean.sh | 24 ------------------------ 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100755 clean.sh diff --git a/build.sh b/build.sh index 88ca967..60e21b5 100755 --- a/build.sh +++ b/build.sh @@ -34,7 +34,7 @@ make -j4 if [[ $UNAME == *"MINGW"* ]]; then cp $base_dir/mupen64plus-input-qt/build/mupen64plus-input-qt.dll $install_dir else - cp $base_dir/mupen64plus-input-qt/build/mupen64plus-input-qt.so $install_dir + cp $base_dir/mupen64plus-input-qt/build/libmupen64plus-input-qt.so $install_dir/mupen64plus-input-qt.so fi cd $base_dir/mupen64plus-audio-sdl2/projects/unix diff --git a/clean.sh b/clean.sh deleted file mode 100755 index bbd828d..0000000 --- a/clean.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash - -base_dir=$PWD - -cd $base_dir/mupen64plus-core/projects/unix -make clean - -cd $base_dir/mupen64plus-rsp-hle/projects/unix -make clean - -cd $base_dir/mupen64plus-input-sdl/projects/unix -make clean - -cd $base_dir/mupen64plus-audio-sdl2/projects/unix -make clean - -rm -rf $base_dir/mupen64plus-gui/build - -cd $base_dir/GLideN64/projects/cmake -make clean - -cd $base_dir -rm -rf $base_dir/mupen64plus -rm $base_dir/*.zip