aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Savoye <rob.savoye@linaro.org>2014-11-17 22:53:04 +0000
committerRob Savoye <rob.savoye@linaro.org>2014-11-17 22:53:04 +0000
commite20349f81b57fef81c039c1062bb56ee04542304 (patch)
tree865c8042968da37898980db0b980ee178ebf7c8f
parent9fbb89deae6d2c4d02dbab76d5642df1fe8d7cac (diff)
change CBUILD to ABE
-rw-r--r--configure.ac22
-rw-r--r--host.conf.in4
2 files changed, 13 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac
index dff00fe..58a1544 100644
--- a/configure.ac
+++ b/configure.ac
@@ -227,13 +227,13 @@ AC_ARG_WITH(dbhost,
dnl The top of the cbuild tree
AC_ARG_WITH(toplevel,
AC_HELP_STRING([--with-toplevel], []),
- CBUILD_TOP=${withval},
- CBUILD_TOP="${PWD}")
-AC_SUBST(CBUILD_TOP)
+ ABE_TOP=${withval},
+ ABE_TOP="${PWD}")
+AC_SUBST(ABE_TOP)
-if test ! -d ${CBUILD_TOP}; then
- AC_MSG_WARN([${CBUILD_TOP} does not exist so creating directory!])
- mkdir -p ${CBUILD_TOP}
+if test ! -d ${ABE_TOP}; then
+ AC_MSG_WARN([${ABE_TOP} does not exist so creating directory!])
+ mkdir -p ${ABE_TOP}
fi
# The various Jenkins jobs copy log files and rest results to a remote file
@@ -250,14 +250,14 @@ AC_ARG_WITH(sources-conf,
SOURCES_CONF="${srcdir}/config/sources.conf")
AC_SUBST(SOURCES_CONF)
-CBUILD_PATH=$(readlink -f ${srcdir})
-AC_SUBST(CBUILD_PATH)
+ABE_PATH=$(readlink -f ${srcdir})
+AC_SUBST(ABE_PATH)
dnl The top of the cbuild tree
AC_ARG_WITH(sysroot,
AC_HELP_STRING([--with-sysroot], []),
SYSROOTS=${withval},
- SYSROOTS="${CBUILD_TOP}"/sysroots)
+ SYSROOTS="${ABE_TOP}"/sysroots)
AC_SUBST(SYSROOTS)
if test x"${target}" != x"${build}"; then
@@ -271,7 +271,7 @@ dnl The local directory where snapshots are stored
AC_ARG_WITH(local-snapshots,
AC_HELP_STRING([--with-local-snapshots], [Where downloaded tarballs are stored]),
LOCAL_SNAPSHOTS=${withval},
- LOCAL_SNAPSHOTS="${CBUILD_TOP}/snapshots")
+ LOCAL_SNAPSHOTS="${ABE_TOP}/snapshots")
AC_SUBST(LOCAL_SNAPSHOTS)
if test ! -d ${LOCAL_SNAPSHOTS}; then
@@ -290,7 +290,7 @@ dnl The top directory for make install, also where all the components we build l
AC_ARG_WITH(local-builds,
AC_HELP_STRING([--with-local-builds], []),
LOCAL_BUILDS=${withval},
- LOCAL_BUILDS="${CBUILD_TOP}/builds")
+ LOCAL_BUILDS="${ABE_TOP}/builds")
AC_SUBST(LOCAL_BUILDS)
if test ! -d ${LOCAL_BUILDS}; then
diff --git a/host.conf.in b/host.conf.in
index a04255a..9264c3f 100644
--- a/host.conf.in
+++ b/host.conf.in
@@ -7,8 +7,8 @@ dbhost=@DBPASSWD@
local_snapshots=@LOCAL_SNAPSHOTS@
git_reference_dir=@GIT_REFERENCE_DIR@
remote_snapshots=@REMOTE_SNAPSHOTS@
-cbuild_top=@CBUILD_TOP@
-cbuild_path=@CBUILD_PATH@
+abe_top=@ABE_TOP@
+abe_path=@ABE_PATH@
sources_conf=@SOURCES_CONF@