Differences From Artifact [af950f4763]:
- Executable file utils/mk_wrapper — part of check-in [52a15efc23] at 2012-11-02 11:57:52 on branch trunk — Cleaned up the checks for being in a megatest area, ensure all exit correctly (user: mrwellan, size: 188) [annotate] [blame] [check-ins using] [more...]
To Artifact [d96f80e4dc]:
- Executable file utils/mk_wrapper — part of check-in [fa512c78ed] at 2013-04-08 14:08:48 on branch development — Fixed -m, added conditional waiver propagation (user: mrwellan, size: 192) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash prefix=$1 cmd=$2 echo "#!/bin/bash" if [ "$LD_LIBRARY_PATH" != "" ];then echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH" fi fullcmd="$prefix/bin/$cmd" | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash prefix=$1 cmd=$2 echo "#!/bin/bash" if [ "$LD_LIBRARY_PATH" != "" ];then echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH" fi fullcmd="$prefix/bin/$cmd" echo "$fullcmd \"\$@\"" |