Hello!
`make distcheck' is working again. No more questions from `rm'.
Regards,
Pavel Roskin
__________________________________
Index: ChangeLog
===================================================================
RCS file: /cvs/automake/automake/ChangeLog,v
retrieving revision 1.1149
retrieving revision 1.1150
diff -u -r1.1149 -r1.1150
--- ChangeLog 2001/03/05 22:11:04 1.1149
+++ ChangeLog 2001/03/06 00:48:20 1.1150
@@ -1,5 +1,15 @@
2001-03-05 Pavel Roskin <[EMAIL PROTECTED]>
+ * tests/copy.test: Never use `rm' without `-f' - it may ask
+ questions, notably for read-only files during `make distcheck'.
+ * tests/insh.test: Likewise.
+ * tests/installsh.test: Likewise.
+ * tests/symlink.test: Likewise.
+ * tests/symlink2.test: Likewise.
+ * tests/symlink3.test: Likewise.
+
+2001-03-05 Pavel Roskin <[EMAIL PROTECTED]>
+
* noinstdir.test: New test.
* tests/Makefile.am (TESTS): Add noinstdir.test.
(XFAIL_TESTS): Likewise.
Index: tests/copy.test
===================================================================
RCS file: /cvs/automake/automake/tests/copy.test,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- copy.test 1999/01/22 14:14:48 1.1
+++ copy.test 2001/03/06 00:48:20 1.2
@@ -5,6 +5,6 @@
. $srcdir/defs || exit 1
: > Makefile.am
-rm install-sh
+rm -f install-sh
$AUTOMAKE -c -a
Index: tests/insh.test
===================================================================
RCS file: /cvs/automake/automake/tests/insh.test,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- insh.test 1996/04/03 22:16:37 1.1
+++ insh.test 2001/03/06 00:48:20 1.2
@@ -5,7 +5,7 @@
. $srcdir/defs || exit 1
-rm mkinstalldirs
+rm -f mkinstalldirs
: > Makefile.am
Index: tests/installsh.test
===================================================================
RCS file: /cvs/automake/automake/tests/installsh.test,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- installsh.test 1999/02/01 11:49:56 1.2
+++ installsh.test 2001/03/06 00:48:20 1.3
@@ -7,7 +7,7 @@
. $srcdir/defs || exit 1
: > Makefile.am
-rm install-sh
+rm -f install-sh
# Since the default path includes '../..', we must run this test in
# yet another subdir.
Index: tests/symlink.test
===================================================================
RCS file: /cvs/automake/automake/tests/symlink.test,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- symlink.test 1999/08/27 05:42:19 1.2
+++ symlink.test 2001/03/06 00:48:20 1.3
@@ -5,8 +5,8 @@
. $srcdir/defs || exit 1
-rm install-sh
-rm mkinstalldirs
+rm -f install-sh
+rm -f mkinstalldirs
: > Makefile.am
Index: tests/symlink2.test
===================================================================
RCS file: /cvs/automake/automake/tests/symlink2.test,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- symlink2.test 2000/03/19 22:24:26 1.1
+++ symlink2.test 2001/03/06 00:48:20 1.2
@@ -4,8 +4,8 @@
. $srcdir/defs || exit 1
-rm install-sh
-rm mkinstalldirs
+rm -f install-sh
+rm -f mkinstalldirs
ln -s Zardoz mkinstalldirs
: > Makefile.am
Index: tests/symlink3.test
===================================================================
RCS file: /cvs/automake/automake/tests/symlink3.test,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- symlink3.test 2000/03/19 22:33:19 1.1
+++ symlink3.test 2001/03/06 00:48:20 1.2
@@ -4,8 +4,8 @@
. $srcdir/defs || exit 1
-rm install-sh
-rm mkinstalldirs
+rm -f install-sh
+rm -f mkinstalldirs
echo zot > zot
echo zot > mkinstalldirs
__________________________________