Commit 4c79e201a57b3891c6f9ea56cb9df9b1907d58b3
1 parent
61e3eceb
Exists in
master
and in
112 other branches
build type from updateEnv
Showing
1 changed file
with
9 additions
and
1 deletions
Show diff stats
update_amda/generate_param_info
@@ -48,7 +48,15 @@ else | @@ -48,7 +48,15 @@ else | ||
48 | if [[ $line == app.user.name* ]]; then | 48 | if [[ $line == app.user.name* ]]; then |
49 | line="app.user.name="$DDUSER | 49 | line="app.user.name="$DDUSER |
50 | fi | 50 | fi |
51 | - | 51 | + |
52 | + if [[ $line == app.plugin* ]]; then | ||
53 | + line="app.plugin=./../build/"$BUILD_TYPE"/plugin/" | ||
54 | + fi | ||
55 | + | ||
56 | + if [[ $line == app.process.LIB* ]]; then | ||
57 | + line="app.process.LIB=-L../build/"$BUILD_TYPE"/lib/ -lParameters" | ||
58 | + fi | ||
59 | + | ||
52 | echo $line >> ./app.properties.temp | 60 | echo $line >> ./app.properties.temp |
53 | 61 | ||
54 | done < <(cat $AMDAINSTALLATION/AMDA_Kernel/app-generate-paraminfo/app.properties) | 62 | done < <(cat $AMDAINSTALLATION/AMDA_Kernel/app-generate-paraminfo/app.properties) |