Overview
Comment: | Fixed LD_LIBRARY_PATH handling in wrapper |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.64 |
Files: | files | file ages | folders |
SHA1: |
a2b3efa030a54e6cfb6c6736fca7e1e2 |
User & Date: | mrwellan on 2017-05-05 11:17:37 |
Other Links: | branch diff | manifest | tags |
Context
2017-05-08
| ||
10:26 | bumped version check-in: e00680eecc user: bjbarcla tags: v1.64, v1.6411 | |
2017-05-07
| ||
06:57 | Merged in changes from v1.65 check-in: 90059ea017 user: matt tags: v1.65 | |
2017-05-05
| ||
11:17 | Fixed LD_LIBRARY_PATH handling in wrapper check-in: a2b3efa030 user: mrwellan tags: v1.64 | |
2017-05-04
| ||
17:18 | fixed typo in megatest.scm check-in: 21852a2d21 user: bjbarcla tags: v1.64 | |
Changes
Modified utils/mk_wrapper from [9bb7f8caf7] to [81ea74cc07].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | + - - - - - - | #!/bin/bash prefix=$1 cmd=$2 target=$3 cfgfile="$prefix/bin/.$(lsb_release -sr)/cfg.sh" if [ "$LD_LIBRARY_PATH" != "" ];then |
︙ | |||
55 56 57 58 59 60 61 62 | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | + + + + + + + - + | exit 1 fi fi EOF fi # echo "#!/bin/bash" > $target # echo "exec $prefix/bin/.\$(lsb_release -sr)/$cmd \"\$@\"" >> $target echo "lsbr=\$(lsb_release -sr)" >> $target if [ "$LD_LIBRARY_PATH" != "" ];then echo "source $prefix/bin/.\$lsbr/cfg.sh" >> $target fi |