From: Tom Tromey Date: Thu, 22 Feb 2001 02:35:30 +0000 (+0000) Subject: * tests/distdir.test: Check to make sure directory isn't made in X-Git-Tag: handle-languages~270 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=e8bc288f18cb01cb5bc51beab64f7be5829f4de1;p=automake.git * tests/distdir.test: Check to make sure directory isn't made in build directory. --- diff --git a/ChangeLog b/ChangeLog index bcaa4031..9355d454 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-02-21 Tom Tromey + * tests/distdir.test: Check to make sure directory isn't made in + build directory. + * automake.in (handle_dist): Do nothing in Cygnus mode. 2001-02-21 Pavel Roskin diff --git a/tests/distdir.test b/tests/distdir.test index c65c94fe..cfc15d9f 100755 --- a/tests/distdir.test +++ b/tests/distdir.test @@ -12,4 +12,8 @@ END $AUTOMAKE || exit 1 grep '\$(mkinstalldirs).*\.' Makefile.in && exit 1 -grep '\$(mkinstalldirs).*foo' Makefile.in +grep '\$(mkinstalldirs).*foo' Makefile.in || exit 1 + +# Check to make sure `foo' isn't made in build directory. +grep 'mkinstalldirs.*foo.*foo' Makefile.in && exit 1 +exit 0