~raof/+junk/testrunner-testing

« back to all changes in this revision

Viewing changes to mir_install_packages.sh

  • Committer: Alan Griffiths
  • Date: 2014-07-28 11:03:18 UTC
  • Revision ID: alan@octopull.co.uk-20140728110318-ggnpki9m9fo13imf
--no-install-recommends

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
date --utc --iso-8601=seconds | xargs echo "[timestamp] Pre install :"
15
15
 
16
 
apt-get install --force-yes -y \
 
16
apt-get --no-install-recommends install --force-yes -y \
17
17
    glmark2-data \
18
18
    glmark2-es2-mir \
19
19
    mir-demo-tester
26
26
        echo $DEPEND
27
27
        INSTALL=$(echo $DEPEND | grep -v ")" | grep -v "(" |grep -v "|"  | cut -d ',' -f1)
28
28
        if [ ! -z "$INSTALL" ]; then
29
 
            apt-get install $INSTALL -y || true
 
29
            apt-get --no-install-recommends install $INSTALL -y || true
30
30
        fi
31
31
    done
32
32
done