diff options
author | Tobias Brunner <tobias@strongswan.org> | 2010-08-10 15:06:41 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2010-09-02 19:04:23 +0200 |
commit | 80c0328eec1fed3353af56912a57db0670062f3c (patch) | |
tree | 087c780abb32aa879b4ae74c5d5c0beb73e39e17 | |
parent | f32c0ce7b6b85c1aed94dd41cdb839f1d41a0698 (diff) | |
download | strongswan-80c0328eec1fed3353af56912a57db0670062f3c.tar.bz2 strongswan-80c0328eec1fed3353af56912a57db0670062f3c.tar.xz |
testing: Print output of 'make oldconfig' to STDOUT, besides logging it.
-rwxr-xr-x | testing/scripts/build-umlkernel | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/scripts/build-umlkernel b/testing/scripts/build-umlkernel index 185545bb8..b9f0d710d 100755 --- a/testing/scripts/build-umlkernel +++ b/testing/scripts/build-umlkernel @@ -119,7 +119,7 @@ cp $KERNELCONFIG .config cecho "!!" cecho "!! Making .config for kernel. You might be prompted for new parameters!" cecho "!!" -make oldconfig ARCH=um SUBARCH=i386 >> $LOGFILE 2>&1 +make oldconfig ARCH=um SUBARCH=i386 2>&1 | tee -a $LOGFILE cecho-n " * Now compiling uml kernel.." make linux ARCH=um SUBARCH=i386 >> $LOGFILE 2>&1 |