diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-11 15:39:49 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-11 15:39:49 +0100 |
commit | c8c056fd203bc60bedb55d45bd8ca81b168391d8 (patch) | |
tree | 33c96bc41adc14d0a881d7bf24bc86ad54a5eef2 /configure.ac | |
parent | ae4e327739112ba326a2945fc0d5550739f3083d (diff) |
BUILD_DIR -> BUILDDIR, to be consistent with the other *DIR
Change-Id: Ia80a1246a7e3c8862a50a3daf79aba5609b7df3a
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index f7b52818f0fe..2b8c4e2a5621 100644 --- a/configure.ac +++ b/configure.ac @@ -86,10 +86,10 @@ AC_PROG_EGREP # AC_PROG_EGREP doesn't set GREP on all systems as well AC_PATH_PROG(GREP, grep) -BUILD_DIR=`pwd` +BUILDDIR=`pwd` cd $srcdir SRC_ROOT=`pwd` -cd $BUILD_DIR +cd $BUILDDIR EXEEXT_FOR_BUILD= x_Cygwin=[\#] @@ -97,8 +97,8 @@ if test "$build_os" = "cygwin"; then EXEEXT_FOR_BUILD=.exe PathFormat "$SRC_ROOT" SRC_ROOT="$formatted_path" - PathFormat "$BUILD_DIR" - BUILD_DIR="$formatted_path" + PathFormat "$BUILDDIR" + BUILDDIR="$formatted_path" x_Cygwin= fi @@ -2409,7 +2409,7 @@ if test -n "${with_solver_and_workdir_root}"; then SOLARVER=${formatted_path}/solver fi else - SOLARVER=${BUILD_DIR}/solver + SOLARVER=${BUILDDIR}/solver fi dnl =================================================================== @@ -4034,7 +4034,7 @@ if test -n "${with_solver_and_workdir_root}"; then WORKDIR=${formatted_path}/workdir/${INPATH} fi else - WORKDIR=${BUILD_DIR}/workdir/${INPATH} + WORKDIR=${BUILDDIR}/workdir/${INPATH} fi OUTDIR="${SOLARVER}/${INPATH}" SOLARINC="-I. -I${SOLARVER}/$INPATH/inc/external -I${SOLARVER}/$INPATH/inc -I$SRC_ROOT/solenv/inc $SOLARINC" |