diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-05-06 20:06:47 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-05-06 20:06:47 +0100 |
commit | 645c1d3b3e83a7a2ebb402029fc009b79d91ffbf (patch) | |
tree | 603e05cfcf0137b1fad74d74905ecf3bf3181404 /virtual | |
parent | Bump ycm (diff) | |
download | portage-645c1d3b3e83a7a2ebb402029fc009b79d91ffbf.tar.bz2 portage-645c1d3b3e83a7a2ebb402029fc009b79d91ffbf.tar.xz portage-645c1d3b3e83a7a2ebb402029fc009b79d91ffbf.zip |
Use ccache
Diffstat (limited to 'virtual')
-rwxr-xr-x | virtual/miller-base/files/update-kernel | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/virtual/miller-base/files/update-kernel b/virtual/miller-base/files/update-kernel index c2d1ae2..076a3c8 100755 --- a/virtual/miller-base/files/update-kernel +++ b/virtual/miller-base/files/update-kernel @@ -1,5 +1,7 @@ #!/bin/bash +PATH="/usr/lib/ccache/bin:$PATH" + cd /usr/src/linux || ( echo "No kernel directory"; exit 1 ) [ -f .config ] || ( echo "No kernel configuration"; exit 1 ) make -j2 || ( echo "Make failed" ; exit 1 ) |