small bug fix

This commit is contained in:
timerix 2023-07-10 17:03:20 +03:00
parent ef6a3f82c4
commit 60fa8c11c2
2 changed files with 1 additions and 2 deletions

View File

@ -24,7 +24,6 @@ DEPS_BASEDIR="."
# dependency_dir='...'"
DEPS=""
# OBJDIR structure:
# ├── objects/ - dir where compiled *.o files are stored. cleans every call of build task
# ├── profile/ - dir where gcc *.gcda profiling info files stored

View File

@ -88,7 +88,7 @@ $(find $OBJDIR/libs -name '*.a')"
# if $lib_file doesn't exist or rebuild_* task was executed, builds static lib
function handle_static_dependency {
local deps_basedir="$1"
local deps_basedir="${1%/}"
local lib_project_dir="$2"
local lib_build_task="$3"
local lib_build_dir="$4"