From 8e6b4336d0d2741a82758834c7fc8bbd4de85360 Mon Sep 17 00:00:00 2001 From: Timerix22 Date: Mon, 13 Feb 2023 20:40:55 +0600 Subject: [PATCH] bugfix --- default.Makefile | 2 +- default.config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/default.Makefile b/default.Makefile index 3a38c5c..7f1ba15 100644 --- a/default.Makefile +++ b/default.Makefile @@ -42,7 +42,7 @@ exec: build_exec # executes $EXEC_FILE exec_dbg: build_exec_dbg - @cbuild/call_task.sh exec_dbg 2>&1 | tee -a make_raw.log + @cbuild/call_task.sh exec 2>&1 | tee -a make_raw.log # executes $EXEC_FILE with valgrind memory checker valgrind: build_exec_dbg diff --git a/default.config b/default.config index 1ea186d..ddeee6b 100644 --- a/default.config +++ b/default.config @@ -30,7 +30,7 @@ case "$OS" in SHARED_LIB_FILE="$PROJECT.dll" ;; LINUX) - EXEC_FILE="$PROJECT.P" + EXEC_FILE="$PROJECT" SHARED_LIB_FILE="$PROJECT.so" ;; *)