Megatest

Check-in [db5773a8d7]
Login
Overview
Comment:Partial but broken update to arch dep install
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | v1.55
Files: files | file ages | folders
SHA1: db5773a8d708b8849d5a5000eaa1db9638ae6cdf
User & Date: mrwellan on 2014-03-24 20:58:48
Other Links: branch diff | manifest | tags
Context
2014-03-24
22:17
Fixed the arch specific install. check-in: 09f7da3964 user: matt tags: v1.55
20:58
Partial but broken update to arch dep install check-in: db5773a8d7 user: mrwellan tags: v1.55
15:56
Switched to lsb_release -sr for os info check-in: 20c0888a15 user: mrwellan tags: v1.55
Changes

Modified utils/mk_wrapper from [b9f245986d] to [8d9de3b56e].

1
2
3
4
5
6
7
8
9
10
11
12
13


14
15
#!/bin/bash

prefix=$1
cmd=$2

echo "#!/bin/bash"
if [ "$LD_LIBRARY_PATH" != "" ];then
  echo "INFO: Using LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >&2
  echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
else
  echo "INFO: LD_LIBRARY_PATH not set" >&2
fi



echo "exec $prefix/bin/.\$(lsb_release -sr)/$cmd \"\$@\""






<







>
>


1
2
3
4
5

6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

prefix=$1
cmd=$2


if [ "$LD_LIBRARY_PATH" != "" ];then
  echo "INFO: Using LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >&2
  echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
else
  echo "INFO: LD_LIBRARY_PATH not set" >&2
fi

echo "#!/bin/bash"
echo "source $prefix/bin/.\$(lsb_release -sr)/cfg.sh"
echo "exec $prefix/bin/.\$(lsb_release -sr)/$cmd \"\$@\""