From: Stefano Lattarini Date: Tue, 28 Aug 2012 08:58:37 +0000 (+0200) Subject: tests: fix a maintainer-check failure ('Exit' used instead of 'exit') X-Git-Tag: v1.12b~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23a4376fc462bbe0e36b5515671724b7e3d89fb9;p=thirdparty%2Fautomake.git tests: fix a maintainer-check failure ('Exit' used instead of 'exit') * t/lisp-loadpath.sh: Here. Signed-off-by: Stefano Lattarini --- diff --git a/t/lisp-loadpath.sh b/t/lisp-loadpath.sh index 50748ce84..e0f21ce98 100755 --- a/t/lisp-loadpath.sh +++ b/t/lisp-loadpath.sh @@ -55,7 +55,7 @@ test ! -e foo.elc # stuff in the srcdir. echo "(provide" > ../foo.el # Break it. echo "defun)" > ../bar.el # Likewise. -$MAKE && Exit 1 +$MAKE && exit 1 $sleep echo "(provide 'foo)" > foo.el echo "(provide 'bar)" > bar.el