From db65048bb3c73fc0ec408df62c6f78fa39d62d85 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 11 Oct 1995 05:53:53 +0000 Subject: Wed Oct 11 00:00:00 1995 Roland McGrath * Makeconfig (config-LDFLAGS): Add missing slash. * sysdeps/mach/hurd/profil.c (fork_profil): Only call update_waiter if profiling was enabled in the parent. * csu/initfini.c: Don't pass -f flag to cp. --- csu/initfini.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'csu') diff --git a/csu/initfini.c b/csu/initfini.c index 8dcd30a008..b0d0e68cbd 100644 --- a/csu/initfini.c +++ b/csu/initfini.c @@ -53,8 +53,9 @@ void _fini (void) __attribute__ ((section (".fini"))); /* End the here document containing the initial common code. Then move the output file crtcommon.tmp to crti.s-new and crtn.s-new. */ asm ("\nEOF_common\n\ -mv -f crtcommon.tmp crti.s-new\n\ -cp -f crti.s-new crtn.s-new"); +rm -f crti.s-new crtn.s-new\n\ +mv crtcommon.tmp crti.s-new\n\ +cp crti.s-new crtn.s-new"); /* Append the .init prologue to crti.s-new. */ asm ("cat >> crti.s-new <<\\EOF.crti.init"); -- cgit v1.2.3