From 5f7ef9d910078a577e421b37c59d9a329d34b6fb Mon Sep 17 00:00:00 2001 From: EPICGameGuy Date: Sat, 30 Dec 2023 01:33:14 -0500 Subject: [PATCH] Fixing up egg-library compile.sh --- dependencies/egg-library/compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies/egg-library/compile.sh b/dependencies/egg-library/compile.sh index 8e2f51d..0e21910 100755 --- a/dependencies/egg-library/compile.sh +++ b/dependencies/egg-library/compile.sh @@ -1,3 +1,3 @@ #!/bin/bash -make install -j$(nproc) && mkdir -p build && pushd build && sudo make install -j$(nproc); popd +make install -j$(nproc) && mkdir -p build && pushd build && cmake .. && sudo make install -j$(nproc); popd