diff options
author | beenje <beenje@svn> | 2010-05-10 21:42:03 +0000 |
---|---|---|
committer | beenje <beenje@svn> | 2010-05-10 21:42:03 +0000 |
commit | 99dc5f955795b7be5dc950ae6aa0c9505069c014 (patch) | |
tree | ea1ad0851779361f5598208bc1ede458f147e6ff /configure.in | |
parent | 3582c2b9f5bdd95ab00f16a3382cff1657d5702f (diff) |
fixed: remove useless "echo -n" that doesn't work on OSX
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@29995 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 70f05a0eb9..e6c8fa53bd 100644 --- a/configure.in +++ b/configure.in @@ -1042,7 +1042,7 @@ if ! test -n "$SVN_REV" -a "$SVN_REV" != "" ; then fi if test "$SVN_REV" = ""; then if test "$HAVE_GIT" = "yes"; then - SVN_REV=$(echo -n `sh gitrev.sh`) + SVN_REV=$(./gitrev.sh) fi fi if test "$SVN_REV" = ""; then |