From: Marko O. <d0...@us...> - 2009-10-27 13:42:12
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "kdfs". The branch, make_kdfs_compile has been updated via ae83edea9758450a29fbfa59bd8b3cd3ebbf0efe (commit) from e9dc700afcb49febc90f5b5dc580818bfc33fb6d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ae83edea9758450a29fbfa59bd8b3cd3ebbf0efe Author: Marko Obrovac <mar...@in...> Date: Tue Oct 27 13:36:00 2009 +0000 A small fix in the kernel compilation script: use "pwd" instead of "dirname" when setting the repo to the current working directory diff --git a/scripts/compile-kernel b/scripts/compile-kernel index 91cca8e..fd82b12 100755 --- a/scripts/compile-kernel +++ b/scripts/compile-kernel @@ -45,7 +45,7 @@ if [ $# -eq 1 ]; then REPO=$1; else if [ "x$REPO" == "x" ]; then - REPO=`dirname $0`; + REPO=`pwd`; fi; fi; ----------------------------------------------------------------------- Summary of changes: scripts/compile-kernel | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- kdfs |