From 3b38c18332c7daa9effd98f14649d39ae3c23645 Mon Sep 17 00:00:00 2001
From: Simon McVittie <[EMAIL REDACTED]>
Date: Thu, 5 May 2022 16:56:39 +0100
Subject: [PATCH] autogen.sh: Fail early if a command fails
Signed-off-by: Simon McVittie <smcv@collabora.com>
---
autogen.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/autogen.sh b/autogen.sh
index a46ebd45..64417764 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,7 @@
#!/bin/sh
-#
+
+set -e
+
echo "Generating build information using autoconf"
echo "This may take a while ..."