From 19a66d3c3b9f502702abdbda27d6908ae1dcbd11 Mon Sep 17 00:00:00 2001 From: everest Date: Mon, 7 Mar 2022 17:28:06 +0000 Subject: [PATCH] Update INSTALL.sh --- INSTALL.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL.sh b/INSTALL.sh index d166323..d113d5f 100644 --- a/INSTALL.sh +++ b/INSTALL.sh @@ -3,11 +3,11 @@ # This script compiles the Sherpa source files into executable binaries, and moves them into their appropriate locations echo "Compiling Sherpa..." -gcc -O2 -Wall $(pkg-config --cflags vte-2.91) sherpa.c -o Sherpa $(pkg-config --libs vte-2.91) # Compile main Sherpa binary +gcc -O2 -Wall $(pkg-config --cflags vte-2.91) ../sherpa.c -o Sherpa $(pkg-config --libs vte-2.91) # Compile main Sherpa binary echo "CC sherpa.c" echo "Compiling sherpa-version..." -gcc -O2 -Wall sherpa-version.c # Compile Sherpa version script +gcc -O2 -Wall ../sherpa-version.c # Compile Sherpa version script echo "CC sherpa-version.c" -cp a.out sherpa-version.c +cp ../a.out ../sherpa-version.c mv sherpa /usr/bin mv sherpa-version /usr/bin