diff options
| author | Jonathan Bauer | 2012-09-28 17:05:07 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2012-09-28 17:05:07 +0200 |
| commit | eff3bddb57596bd25111953bb3e592163499d7a9 (patch) | |
| tree | 9ea7ddcd49db14156fd02a12448e87c3bf60aead /remote/tools | |
| parent | fix 2 (diff) | |
| download | tm-scripts-eff3bddb57596bd25111953bb3e592163499d7a9.tar.gz tm-scripts-eff3bddb57596bd25111953bb3e592163499d7a9.tar.xz tm-scripts-eff3bddb57596bd25111953bb3e592163499d7a9.zip | |
fix 3...
Diffstat (limited to 'remote/tools')
| -rw-r--r-- | remote/tools/busybox/build.busybox | 10 | ||||
| -rw-r--r-- | remote/tools/plymouth/build.plymouth | 2 |
2 files changed, 8 insertions, 4 deletions
diff --git a/remote/tools/busybox/build.busybox b/remote/tools/busybox/build.busybox index 09d96138..eb26a3c9 100644 --- a/remote/tools/busybox/build.busybox +++ b/remote/tools/busybox/build.busybox @@ -1,6 +1,11 @@ #!/bin/bash -fetch_source() { +install_dependencies() +{ +} + +fetch_source() +{ [ ! -d src ] && mkdir src if [ ! -e .fetched_source ]; then git clone $GIT src @@ -8,7 +13,8 @@ fetch_source() { fi } -build() { +build() +{ if [ ! -e .built ]; then cd src make diff --git a/remote/tools/plymouth/build.plymouth b/remote/tools/plymouth/build.plymouth index fcaa66ea..21ef5761 100644 --- a/remote/tools/plymouth/build.plymouth +++ b/remote/tools/plymouth/build.plymouth @@ -1,7 +1,5 @@ #!/bin/bash -. setup-plymouth.conf - install_dependencies() { apt-get install --force-yes $deps } |
