Skip to content

Commit

Permalink
Don't attempt to update config.guess and config.sub anymore.
Browse files Browse the repository at this point in the history
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@28854 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
ceros7 committed Mar 26, 2010
1 parent fdc75d4 commit 8c52a32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 22 deletions.
2 changes: 2 additions & 0 deletions bootstrap
@@ -1,5 +1,7 @@
#!/bin/sh

set -e

autoreconf -vif
autoreconf -vif xbmc/lib/libass
autoreconf -vif xbmc/cores/dvdplayer/Codecs/libbdnav
Expand Down
22 changes: 0 additions & 22 deletions configure.in
Expand Up @@ -6,28 +6,6 @@ AC_INIT("xbmc", 9.11, http://trac.xbmc.org)
AC_CONFIG_HEADERS([config.h])
AH_TOP([#pragma once])

# Check for later version of config.guess and config.sub
AC_MSG_NOTICE([Checking for later version of config.guess])
if [[ -x "/usr/share/misc/config.guess" ]]; then
CONFIG_GUESS="/usr/share/misc/config.guess"
elif [[ -x "/usr/share/gnuconfig/config.guess" ]]; then
CONFIG_GUESS="/usr/share/gnuconfig/config.guess"
fi
if [[ "$($PWD/config.guess -t | sed 's/-//g')" -lt \
"$($CONFIG_GUESS -t | sed 's/-//g')" ]]; then
cp -f "$CONFIG_GUESS" "config.guess"
fi
AC_MSG_NOTICE([Checking for later version of config.sub])
if [[ -x "/usr/share/misc/config.sub" ]]; then
CONFIG_SUB="/usr/share/misc/config.sub"
elif [[ -x "/usr/share/gnuconfig/config.sub" ]]; then
CONFIG_SUB="/usr/share/gnuconfig/config.sub"
fi
if [[ "$($PWD/config.sub -t | sed 's/-//g')" -lt \
"$($CONFIG_SUB -t | sed 's/-//g')" ]]; then
cp -f "$CONFIG_SUB" "config.sub"
fi

AC_CANONICAL_HOST

# General message strings
Expand Down

0 comments on commit 8c52a32

Please sign in to comment.