Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
configure.inc: fix ARCH detection
  • Loading branch information
perexg committed Mar 26, 2016
1 parent a66d1c8 commit 24fd130
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions support/configure.inc
Expand Up @@ -14,6 +14,7 @@ CONFIGURE_ARGS="$*"
# System setup
[ -z "$PLATFORM" ] && PLATFORM=$(uname -s | tr "[:upper:]" "[:lower:]")
[ -z "$CPU" ] && CPU=generic
[ -z "$ARCH" ] && ARCH=$(CC -dumpmachine | cut -d '-' -f 1)
[ -z "$ARCH" ] && ARCH=$(uname -m)
[ -z "$OSENV" ] && OSENV=posix
[ -z "$PYTHON" ] && PYTHON=python
Expand Down

0 comments on commit 24fd130

Please sign in to comment.