From 4ede1cc41668759f0e11b33b68e84259f8fe932e Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 12 Mar 2015 17:07:18 +0000 Subject: [PATCH] Linux: Remove unused build.sh file from the binary distribution. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2076 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- tools/distrib/linux/build.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 tools/distrib/linux/build.sh diff --git a/tools/distrib/linux/build.sh b/tools/distrib/linux/build.sh deleted file mode 100755 index 08b4e49d8..000000000 --- a/tools/distrib/linux/build.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -if [ -z "$1" ]; then - echo "ERROR: Please specify a build target: Debug or Release" -else - make -j8 cefclient cefsimple BUILDTYPE=$1 - if [ $? -eq 0 ]; then - echo "Giving SUID permissions to chrome-sandbox..." - echo "(using sudo so you may be asked for your password)" - sudo -- chown root:root "out/$1/chrome-sandbox" && - sudo -- chmod 4755 "out/$1/chrome-sandbox" - fi -fi