Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
configure.inc: shuffle
  • Loading branch information
perexg committed Mar 26, 2016
1 parent 24fd130 commit 3c2226d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions support/configure.inc
Expand Up @@ -11,6 +11,11 @@

CONFIGURE_ARGS="$*"

# Compiler
[ -z "$CC" ] && CC=cc
[ -z "$CFLAGS" ] && CFLAGS=
[ -z "$LDFLAGS" ] && LDFLAGS=

# System setup
[ -z "$PLATFORM" ] && PLATFORM=$(uname -s | tr "[:upper:]" "[:lower:]")
[ -z "$CPU" ] && CPU=generic
Expand All @@ -30,11 +35,6 @@ CONFIGURE_ARGS="$*"
[ -z "$datadir" ] && datadir=\${prefix}/share
[ -z "$mandir" ] && mandir=\${datadir}/man

# Compiler
[ -z "$CC" ] && CC=cc
[ -z "$CFLAGS" ] && CFLAGS=
[ -z "$LDFLAGS" ] && LDFLAGS=

# Environment
[ -z "$ROOTDIR" ] && ROOTDIR=$(cd "$(dirname "$0")"; pwd)
[ -z "$BUILDDIR" ] && BUILDDIR=$ROOTDIR/build.$PLATFORM
Expand Down

0 comments on commit 3c2226d

Please sign in to comment.