From 4d8d10814a31d3d9d4a573a2fa39d710f3a126ea Mon Sep 17 00:00:00 2001 From: nakst <> Date: Mon, 27 Dec 2021 09:59:10 +0000 Subject: [PATCH] verbose port building --- ports/mesa/port.sh | 2 +- util/build.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ports/mesa/port.sh b/ports/mesa/port.sh index c48461d..fecd692 100755 --- a/ports/mesa/port.sh +++ b/ports/mesa/port.sh @@ -1,4 +1,4 @@ -set -e +set -ex rm -rf bin/mesa bin/build get-source mesa-20.1.8 https://archive.mesa3d.org//mesa-20.1.8.tar.xz diff --git a/util/build.c b/util/build.c index 9d04d67..28d8ca9 100644 --- a/util/build.c +++ b/util/build.c @@ -1353,6 +1353,7 @@ void DoCommand(const char *l) { struct dirent *entry; while ((entry = readdir(directory))) { + fprintf(stderr, "build-optional-ports: Calling \"ports/%s/port.sh\"...\n", entry->d_name); CallSystemF("ports/%s/port.sh", entry->d_name); }