scripts/wrapper.in
author Richard Strand <richard.strand@icomera.com>
Tue Jan 12 21:47:36 2010 +0000 (2010-01-12)
changeset 1729 dd72fa745318
parent 1402 146c62142e1b
child 1960 8307ceabe5c0
permissions -rw-r--r--
companion_tools/automake: Add automake tool

Add version 1.11.1 of automake as a companion tool

Signed-off-by: Richard Strand <richard.strand@icomera.com>
     1 #!/bin/sh
     2 
     3 canonicalizedname=$(readlink -nm "${0}")
     4 dirname="$(dirname "${canonicalizedname}")"
     5 basename="$(basename "${canonicalizedname}")"
     6 
     7 ld_lib_path="$(dirname "${dirname}")/lib"
     8 
     9 case ":${LD_LIBRARY_PATH}:" in
    10     *":${ld_lib_path}:"*)   ;;
    11     *)  LD_LIBRARY_PATH="${ld_lib_path}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}";;
    12 esac
    13 
    14 export LD_LIBRARY_PATH
    15 exec "${dirname}/.${basename}" "$@"