From ab72d802f38de6750f0a9fdc356d19066a8c863c Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 5 Dec 2000 13:50:33 +0000 Subject: [PATCH] * tests/atspecific.m4 (_AT_CHECK_AC_MACRO): s/cp -f/mv -f/. --- ChangeLog | 4 ++++ tests/atspecific.m4 | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3fadbe9d..aa35544e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-12-05 Akim Demaille + + * tests/atspecific.m4 (_AT_CHECK_AC_MACRO): s/cp -f/mv -f/. + 2000-12-01 Pavel Roskin * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Don't escape diff --git a/tests/atspecific.m4 b/tests/atspecific.m4 index 4af80db8..69c63542 100644 --- a/tests/atspecific.m4 +++ b/tests/atspecific.m4 @@ -73,9 +73,9 @@ AT_CHECK_CONFIGURE dnl Some tests might exit prematurely when they find a problem, in dnl which case `env-after' is probably missing. Don't check it then. if test -f state-env.after; then - cp -f state-env.before expout + mv -f state-env.before expout AT_CHECK([cat state-env.after], 0, expout) - cp -f state-ls.before expout + mv -f state-ls.before expout AT_CHECK([cat state-ls.after], 0, expout) fi ])# _AT_CHECK_AC_MACRO