From a8e27b4216bf7fd31c345a262b14ffac7bf24ea2 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Thu, 23 Jun 2022 12:34:12 +0200 Subject: [PATCH] fixup! build: stop relying on intltool for i18n Drop || exit 1 from autogen.sh. They make no don't do anything useful, as "set -e" already causes termination on bad status. This merely overwrites $?. --- autogen.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autogen.sh b/autogen.sh index 48a3b16252..9f58536d45 100755 --- a/autogen.sh +++ b/autogen.sh @@ -22,9 +22,9 @@ PKG_NAME=NetworkManager cd $srcdir -aclocal --install || exit 1 -gtkdocize --copy || exit 1 -autoreconf --verbose --force --install || exit 1 +aclocal --install +gtkdocize --copy +autoreconf --verbose --force --install cd $olddir if test -z "$NOCONFIGURE"; then