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 $?.
This commit is contained in:
Lubomir Rintel 2022-06-23 12:34:12 +02:00
parent a725080f1e
commit a8e27b4216

View file

@ -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