diff options
Diffstat (limited to 'tests/condman2.test')
-rwxr-xr-x | tests/condman2.test | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/condman2.test b/tests/condman2.test index 6969479ed..cc0d9db2e 100755 --- a/tests/condman2.test +++ b/tests/condman2.test @@ -15,16 +15,16 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # Make sure appropriate man install targets generated in all cases. -. ./defs || exit 1 +. ./defs || Exit 1 cat > Makefile.am << 'END' man_MANS = foo.1 foo.2 man5_MANS = foo.5 END -$ACLOCAL || exit 1 -$AUTOMAKE || exit 1 +$ACLOCAL || Exit 1 +$AUTOMAKE || Exit 1 -grep '^install-man1:' Makefile.in || exit 1 -grep '^install-man2:' Makefile.in || exit 1 -grep '^install-man5:' Makefile.in || exit 1 +grep '^install-man1:' Makefile.in || Exit 1 +grep '^install-man2:' Makefile.in || Exit 1 +grep '^install-man5:' Makefile.in || Exit 1 |