From 4ff3d9d6b44bc69c15cd960fa0c062abd4c4e03a Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 27 Feb 2001 01:46:34 +0000 Subject: [PATCH] Explain that the mktemp warning is harmless. If the autoconf inputs are changed, then try to reconfigure. Don't worry if we can't do it, though. --- Makefile.in | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 223d469e..88202999 100644 --- a/Makefile.in +++ b/Makefile.in @@ -54,7 +54,17 @@ install-strip: $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install rsync: $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS) + @-echo " Note: The link command may give a warning about use of mktemp." + @-echo " The warning may be ignored because rsync uses this function in a safe way." + $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS) + +Makefile: Makefile.in configure config.status + ./config.status --recheck + +# It's OK if this fails, because we don't require people to have +# autoconf installed. +configure: configure.in + -cd $(srcdir) && autoconf rsync.1: rsync.yo yodl2man -o rsync.1 rsync.yo -- 2.34.1