diff options
author | althekiller <althekiller@svn> | 2010-06-08 22:28:03 +0000 |
---|---|---|
committer | althekiller <althekiller@svn> | 2010-06-08 22:28:03 +0000 |
commit | f36e250bde71323020f67f80170bba2baed024d3 (patch) | |
tree | 19b573434b1d049dde2fcc6ba2ba6770c9ecc6d7 | |
parent | 65b75df9a3634642168337e50878663ceb039561 (diff) |
Revert "fixed: hardcoding of libdir and datadir in xbmc.sh.in"
This reverts commit 76ee3bea2326f77edddba7239065abea344a238b.
bzzt. Those autoconf macros contain unexpanded shell vars.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@30989 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | tools/Linux/xbmc.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Linux/xbmc.sh.in b/tools/Linux/xbmc.sh.in index 51aec5a414..9ccad4eaa5 100644 --- a/tools/Linux/xbmc.sh.in +++ b/tools/Linux/xbmc.sh.in @@ -19,7 +19,7 @@ # http://www.gnu.org/copyleft/gpl.html SAVED_ARGS="$@" -LIBDIR="@libdir@" +LIBDIR="@prefix@/lib" # Check for some options used by this script while [ "$#" -gt "0" ] @@ -97,7 +97,7 @@ print_crash_report() echo "Crash report available at $FILE" } -python @datadir@/xbmc/FEH.py "$SAVED_ARGS" +python @prefix@/share/xbmc/FEH.py "$SAVED_ARGS" RET=$? if [ $RET -ne 0 ]; then exit $RET |