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

Unified Diff: src/scripts/extlinux.sh

Issue 651062: Remove old build related scripts that are no longer needed. (Closed)
Patch Set: Adjusted after rtc's change. Created 10 years, 10 months 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 | src/scripts/import_native_build.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/scripts/extlinux.sh
diff --git a/src/scripts/extlinux.sh b/src/scripts/extlinux.sh
deleted file mode 100755
index a82a5b749da1f8cf97a75fa87f565c96e3a8eef2..0000000000000000000000000000000000000000
--- a/src/scripts/extlinux.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-
-# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# Runs our own version of extlinux, which is in the third_party directory.
-# Our version is quieter and faster. extlinux will be compiled if it's not
-# already.
-
-set -e
-
-SCRIPTS_ROOT=`dirname "$0"`
-THIRD_PARTY="${SCRIPTS_ROOT}/../third_party"
-BUILD_ROOT=${BUILD_ROOT:-${SCRIPTS_ROOT}/../build}
-EXTLINUX_BIN="$BUILD_ROOT"/x86/obj/src/third_party/syslinux/syslinux-*/extlinux/extlinux
-
-echo bin is "$EXTLINUX_BIN"
-
-if [ ! -e $EXTLINUX_BIN ]
-then
- # compile extlinux
- (cd "$SCRIPTS_ROOT/../third_party/syslinux/files/" && make)
- if [ ! -e $EXTLINUX_BIN ]
- then
- echo "Can't find or compile extlinux. Sorry."
- exit 1
- fi
-fi
-
-# we don't want ""s around $* b/c that will group all args into a single arg
-$EXTLINUX_BIN $*
« no previous file with comments | « no previous file | src/scripts/import_native_build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698