diff options
author | spiff <spiff@xbmc.org> | 2011-10-27 22:26:22 +0200 |
---|---|---|
committer | spiff <spiff@xbmc.org> | 2011-10-27 22:29:20 +0200 |
commit | ecfc2d572faf9480d4b2ddc4139079b51e591337 (patch) | |
tree | 88e9c7cc921a670e977c9f599081b37c44c85a3c /tools | |
parent | 4fd9254f9ca67342ff197bea4472ad0e25adbc3f (diff) |
fixed: xbmc-standalone did not respect configure prefix.
thanks to flyser, closes #11895
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Linux/xbmc-standalone.sh.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/Linux/xbmc-standalone.sh.in b/tools/Linux/xbmc-standalone.sh.in index c0946c33e5..07158e50a5 100644 --- a/tools/Linux/xbmc-standalone.sh.in +++ b/tools/Linux/xbmc-standalone.sh.in @@ -18,7 +18,10 @@ # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. # http://www.gnu.org/copyleft/gpl.html -XBMC="xbmc --standalone $@" +prefix="@prefix@" +exec_prefix="@exec_prefix@" +bindir="@bindir@" +XBMC="${bindir}/xbmc --standalone $@" @XBMC_STANDALONE_SH_PULSE@ |