Skip to content
This repository was archived by the owner on Jul 20, 2023. It is now read-only.

Commit e4df0b5

Browse files
committed
fix path debug->release
1 parent 9bad553 commit e4df0b5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ Release/
6161
*-release.bat
6262
*_debug.bat
6363
*_release.bat
64+
*run.sh
6465

6566
# Executables
6667
*.exe
@@ -94,4 +95,4 @@ tests/bin
9495
*aps
9596

9697
# Tests Data
97-
tests/data/loop_desktop_A/*
98+
tests/data/loop_desktop_A/*

tests/runRelease.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ld_library_path="./"
77
for modulePath in $(grep -o "\$XPCF_MODULE_ROOT.*lib" $1_conf.xml)
88
do
99
modulePath=${modulePath/"\$XPCF_MODULE_ROOT"/${XPCF_MODULE_ROOT}}
10-
if ! [[ $ld_library_path =~ "$modulePath/x86_64/shared/debug" ]]
10+
if ! [[ $ld_library_path =~ "$modulePath/x86_64/shared/release" ]]
1111
then
12-
ld_library_path=$ld_library_path:$modulePath/x86_64/shared/debug
12+
ld_library_path=$ld_library_path:$modulePath/x86_64/shared/release
1313
fi
1414
done
1515

0 commit comments

Comments
 (0)