]> sourceware.org Git - automake.git/commitdiff
* tests/yaccvpath.test: No need to remove dummy files.
authorTom Tromey <tromey@redhat.com>
Sun, 4 Mar 2001 21:05:09 +0000 (21:05 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 4 Mar 2001 21:05:09 +0000 (21:05 +0000)
* tests/subobj3.test: No need to remove dummy files.
* tests/pr9.test: No need to remove dummy files.
* tests/pr87.test: No need to remove dummy files.
* tests/pr19.test: No need to remove dummy files.
* tests/install2.test: No need to remove dummy files.
* tests/defs: Actually copy in install-sh, mkinstalldirs, missing,
and depcomp.

ChangeLog
tests/defs
tests/install2.test
tests/pr19.test
tests/pr87.test
tests/pr9.test
tests/subobj3.test
tests/yaccvpath.test

index 574ef68b74f6f55ec08c24ac916bcfa8b0e88ab6..440bdcbb30b269ff494d992ca5ef4d61fa425387 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2001-03-03  Tom Tromey  <tromey@redhat.com>
+
+       * tests/yaccvpath.test: No need to remove dummy files.
+       * tests/subobj3.test: No need to remove dummy files.
+       * tests/pr9.test: No need to remove dummy files.
+       * tests/pr87.test: No need to remove dummy files.
+       * tests/pr19.test: No need to remove dummy files.
+       * tests/install2.test: No need to remove dummy files.
+       * tests/defs: Actually copy in install-sh, mkinstalldirs, missing,
+       and depcomp.
+
 2001-02-27  Pavel Roskin  <proski@gnu.org>
 
        * tests/yaccvpath.test: Add a delay to make parse.c really out
index 24a0f7501c0f47195037fa46ccc6f4efb395453b..db0970b8098aad3469d0df1e7c654745481e0543 100644 (file)
@@ -22,6 +22,12 @@ esac
 chmod -R a+rwx testSubDir > /dev/null 2>&1
 rm -rf testSubDir > /dev/null 2>&1
 mkdir testSubDir
+
+# Copy in some files we need.
+for file in install-sh mkinstalldirs missing depcomp; do
+   cp $srcdir/../$file testSubDir/$file || exit 1
+done
+
 cd ./testSubDir
 
 # Build appropriate environment in test directory.  Eg create
@@ -37,12 +43,6 @@ AC_PROG_MAKE_SET
 AC_OUTPUT(Makefile)
 END
 
-: > install-sh
-: > mkinstalldirs
-: > missing
-
-(cd .. && cp $srcdir/../depcomp testSubDir/depcomp) || exit 1
-
 # See how redirections should work.  User can set VERBOSE to see all
 # output.
 test -z "$VERBOSE" && {
index dd1aa40f1bb0c6a8027599876804a8fc31fafa6f..d43cedcd1fce7b30162c99de2feacad2d0a1fb24 100755 (executable)
@@ -17,9 +17,6 @@ cat > Makefile.am << 'END'
 SUBDIRS = .
 END
 
-# Remove some dummy files added by defs.
-rm -f install-sh mkinstalldirs missing
-
 # Fail gracefully if no autoconf.
 $needs_autoconf
 
index ca6225532ed631715524623ccb91e30614287872..00056e9fc5f0b9916bc49a4d65ce148ad59b886b 100755 (executable)
@@ -27,10 +27,6 @@ noinst_PROGRAMS   = foo
 foo_SOURCES       = foo.l
 END
 
-# Remove some files installed by defs.  These will be reinstalled by
-# automake.
-rm -f install-sh missing mkinstalldirs depcomp
-
 echo %% > foo.l
 
 # Fail gracefully if no autoconf.
index a027606ef399262ea68b89e75c98831cf09b1ccf..c43701bfc395b6aa3f69128df5906c47e7047c7c 100755 (executable)
@@ -36,8 +36,6 @@ touch README NEWS AUTHORS ChangeLog
 
 mkdir build
 
-rm missing install-sh mkinstalldirs
-
 # We use gcc and not gcc -traditional as the latter fails on some
 # Linux boxes (Red Hat 5.1 in particular).
 $ACLOCAL \
index 952588a0441ef0fe7094d40bc14e4c2c8bdd0d84..c0e9e53d8609e9587396efeab887c18e36d6bad1 100755 (executable)
@@ -13,10 +13,6 @@ END
 
 : > Makefile.am
 
-# Remove some files installed by defs.  These will be reinstalled by
-# automake.
-rm -f install-sh missing mkinstalldirs depcomp
-
 mkdir support
 
 # Fail gracefully if no autoconf.
index bdd403e0f8d058e52b41280f12d37ef1803b2524..bb3b373e607d74f94d8d5249f2bf596e4cb4e1cd 100755 (executable)
@@ -21,10 +21,6 @@ bin_PROGRAMS = hello
 hello_SOURCES = sub/hello.c
 END
 
-# Remove some files installed by defs.  These will be reinstalled by
-# automake.
-rm -f install-sh missing mkinstalldirs depcomp
-
 mkdir sub
 cat > sub/hello.c << 'END'
 #include <stdio.h>
index 9d90f202f997d4a84a7211c889c3126c48d452d0..d78ca4edca8cdfde9ba7c2ea593e8fe28d469b22 100755 (executable)
@@ -48,10 +48,6 @@ END
 YACC="bison -y"
 export YACC
 
-# Remove some files installed by defs.
-# They will be reinstalled by automake.
-rm -f install-sh missing mkinstalldirs
-
 set -e
 
 $ACLOCAL
This page took 0.04094 seconds and 5 git commands to generate.