Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: chromeos-base/chromeos-chrome/chromeos-chrome-8.0.552.308.ebuild

Issue 5598002: build: Build Chrome in out_$BOARD rather than $BOARD_out. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/chromiumos-overlay.git@master
Patch Set: update 8.0.552.308 ebuild too' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chromeos-base/chromeos-chrome/chromeos-chrome-9999.ebuild » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos-base/chromeos-chrome/chromeos-chrome-8.0.552.308.ebuild
diff --git a/chromeos-base/chromeos-chrome/chromeos-chrome-8.0.552.308.ebuild b/chromeos-base/chromeos-chrome/chromeos-chrome-8.0.552.308.ebuild
index dd05be10f49bbab8939474e5398b191cd53a6a86..a89e59b7da7539f7f1fd3eb0870a5e34019c94a3 100755
--- a/chromeos-base/chromeos-chrome/chromeos-chrome-8.0.552.308.ebuild
+++ b/chromeos-base/chromeos-chrome/chromeos-chrome-8.0.552.308.ebuild
@@ -90,9 +90,9 @@ BUILD_TOOL=make
BUILD_DEFINES="sysroot=$ROOT python_ver=2.6 swig_defines=-DOS_CHROMEOS linux_use_tcmalloc=0 chromeos=1 linux_sandbox_path=${CHROME_DIR}/chrome-sandbox ${EXTRA_BUILD_ARGS}"
BUILDTYPE="${BUILDTYPE:-Release}"
BOARD="${BOARD:-${SYSROOT##/build/}}"
-BUILD_OUT="${BUILD_OUT:-${BOARD}_out}"
-# WARNING: We are using a symlink now for the build directory to work around
-# command line length limits. This will cause problems if you are doing
+BUILD_OUT="${BUILD_OUT:-out_${BOARD}}"
+# WARNING: We are using a symlink now for the build directory to work around
+# command line length limits. This will cause problems if you are doing
# parallel builds of different boards/variants.
# Unsetting BUILD_OUT_SYM will revert this behavior
BUILD_OUT_SYM="c"
@@ -373,6 +373,15 @@ src_prepare() {
elog "${CHROME_ROOT} should be set here properly"
cd "${CHROME_ROOT}/src" || die "Cannot chdir to ${CHROME_ROOT}"
+ # If there's already a build directory in the old location, rename it to the
kliegs 2010/12/03 19:44:19 Keep comments <80 chars please
Daniel Erat 2010/12/03 19:50:35 They are (well, one line is exactly 80 columns).
+ # new location.
+ # TODO(derat): Remove this in January 2011.
kliegs 2010/12/03 19:44:19 I'd rather see this as a specific week or date. r
Daniel Erat 2010/12/03 19:50:35 I didn't add a date since it doesn't really matter
+ OLD_BUILD_OUT="${BOARD}_out"
+ if [[ -d "${OLD_BUILD_OUT}" && ! -e "${BUILD_OUT}" ]]; then
+ elog "Renaming output directory ${OLD_BUILD_OUT} to ${BUILD_OUT}"
+ mv "${OLD_BUILD_OUT}" "${BUILD_OUT}"
+ fi
+
# We do symlink creation here if appropriate
if [ ! -z "${BUILD_OUT_SYM}" ]; then
if [ -h "${BUILD_OUT_SYM}" ]; then # remove if an existing symlink
« no previous file with comments | « no previous file | chromeos-base/chromeos-chrome/chromeos-chrome-9999.ebuild » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698