From 92615d0f570ac638397646bd70ae208857b0a46c Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Fri, 31 Jul 2009 17:39:47 +1200 Subject: [PATCH] Author: Ralf Wildenhues Fix libtool 2.2.6 warnings for rm Hopefully future libtool will not need this. Meanhile 2.2.6 does. --- configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 6956dd02c2..787e6c1d2e 100644 --- a/configure.in +++ b/configure.in @@ -1902,7 +1902,6 @@ AC_PROG_LN_S AC_PATH_PROG(SH, sh, /bin/sh) AC_PATH_PROG(FALSE, false, /usr/bin/false) AC_PATH_PROG(TRUE, true, /usr/bin/true) -AC_PATH_PROG(RM, rm, $FALSE) AC_PATH_PROG(MV, mv, $FALSE) AC_PATH_PROG(MKDIR, mkdir, $FALSE) AC_PATH_PROG(LN, ln, cp) @@ -1910,6 +1909,10 @@ AC_PATH_PROG(PERL, perl, none) dnl automake handles this AC_PATH_PROG(MAKEDEPEND, makedepend, $TRUE) AC_PATH_PROG(AR, ar, $FALSE) +AC_PATH_PROG(RM, rm, $FALSE) +dnl Libtool 2.2.6 requires: rm -f +RM="$RM -f" + if test "$ac_cv_path_PERL" = "none"; then echo "Perl is required to compile Squid" echo "Please install Perl and then re-run configure" -- 2.47.2