summaryrefslogtreecommitdiffstats
path: root/wayland-build.sh
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-01-16 08:24:41 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-01-16 08:24:41 +0100
commite987a296c33d0dab09428bf28140ced054130609 (patch)
treee1785f061f2e8a42007e5e1f4d2b2d5d680157f4 /wayland-build.sh
parent1dc86d6d0e582e02a291f197d76345e8a2b2d6e2 (diff)
downloadbin-e987a296c33d0dab09428bf28140ced054130609.zip
bin-e987a296c33d0dab09428bf28140ced054130609.tar.gz
wayland-build.sh: redirect build stdout to tmp file
Diffstat (limited to 'wayland-build.sh')
-rwxr-xr-xwayland-build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/wayland-build.sh b/wayland-build.sh
index cbc658a..9844e31 100755
--- a/wayland-build.sh
+++ b/wayland-build.sh
@@ -51,7 +51,8 @@ function build () {
if [ $FORCE_DISTCLEAN -eq 1 ]; then
say " * make distclean" && make distclean >/dev/null
fi
- say " * make" && make >/dev/null && say " * install" && echo "$SUDO_PASSWD" | sudo -S -E make install
+ tmp=/tmp/$my_dir.build
+ say " * make" && make >$tmp && say " * install" && echo "$SUDO_PASSWD" | sudo -S -E make install
}
function autogen () {