summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 () {