v2.3.2: fixed symlink creation
This commit is contained in:
parent
458652d0c5
commit
3198f8905e
@ -1 +1 @@
|
||||
2.3.1
|
||||
2.3.2
|
||||
@ -1,3 +1,6 @@
|
||||
## 2.3.2
|
||||
+ fixed symlink creation in `OBJDIR/static_libs`
|
||||
|
||||
## 2.3.1
|
||||
+ user config loads before project config
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
INSTALLED_CBUILD_VERSION=2.3.1
|
||||
INSTALLED_CBUILD_VERSION=2.3.2
|
||||
|
||||
# set \t size to 4 spaces
|
||||
tabs 4
|
||||
|
||||
@ -137,8 +137,8 @@ function build_dependency {
|
||||
# creates symbolic link to each file in $OBJDIR/static_libs
|
||||
for file in $DEP_STATIC_OUT_FILES; do
|
||||
# doesnt return error if called not like this
|
||||
f=$(realpath $file)
|
||||
ln -sfv $f "$proj_root_dir/$OBJDIR/static_libs"
|
||||
real_file=$(realpath $file)
|
||||
ln -sfv "$real_file" "$proj_root_dir/$OBJDIR/static_libs/"
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
CBUILD_VERSION=2.3.1
|
||||
CBUILD_VERSION=2.3.2
|
||||
|
||||
PROJECT="%PROJECT_NAME%"
|
||||
CMP_C="gcc"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user