]> sourceware.org Git - automake.git/commitdiff
* tests/mkinst2.test: Rewrite.
authorAlexandre Duret-Lutz <adl@gnu.org>
Thu, 13 Nov 2003 19:27:14 +0000 (19:27 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Thu, 13 Nov 2003 19:27:14 +0000 (19:27 +0000)
ChangeLog
tests/mkinst2.test

index f506dc4ecd6a935d76ad97cf1d6e1f2929b94e87..86950695967d80dd54c50c252ebdf62e879cfe66 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-11-13  Alexandre Duret-Lutz  <adl@gnu.org>
 
+       * tests/mkinst2.test: Rewrite.
+
        * m4/mkdirp.m4: Do not require AM_AUX_DIR_EXPAND.
 
 2003-11-12  Alexandre Duret-Lutz  <adl@gnu.org>
index d255ca853db3c599c424dea05461b6e55e7d8080..8c8c5931d4efbb0c7e0e42f0c1697a8d6a9ab066 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 1996, 1997, 2001, 2002  Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997, 2001, 2002, 2003  Free Software Foundation, Inc.
 #
 # This file is part of GNU Automake.
 #
 
 . ./defs || exit 1
 
+set -e
+
+echo AC_OUTPUT >> configure.in
+
 cat > Makefile.am << 'END'
 AUTOMAKE_OPTIONS = no-installman
 man_MANS = foo.1
@@ -29,14 +33,10 @@ END
 
 : > foo.1
 
-cat > mkinstalldirs << 'END'
-echo "$@"
-END
-
-chmod +x mkinstalldirs
-
-$ACLOCAL || exit 1
-$AUTOMAKE || exit 1
+$ACLOCAL
+$AUTOCONF
+$AUTOMAKE
+./configure --prefix `pwd`/sub
 
-($MAKE -s -f Makefile.in installdirs | grep man) && exit 1
-exit 0
+$MAKE installdirs
+test ! -d sub/man
This page took 0.035967 seconds and 5 git commands to generate.