Skip to content
Snippets Groups Projects
Commit ba511b47 authored by Bradley T. Hughes's avatar Bradley T. Hughes
Browse files

Fixes: don't override LD_LIBRARY_PATH, don't depend on /bin/bash

RevBy: hjk
parent 2780999d
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#!/bin/sh
bindir=$(dirname "$0")
libdir=$(cd ${bindir}/../lib ; pwd)
LD_LIBRARY_PATH="${libdir}" "${bindir}/qtcreator.bin" ${1+"$@"}
LD_LIBRARY_PATH="${libdir}:${LD_LIBRARY_PATH}" "${bindir}/qtcreator.bin" ${1+"$@"}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment