]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
authorAmos Jeffries <squid3@treenet.co.nz>
Fri, 31 Jul 2009 05:39:47 +0000 (17:39 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 31 Jul 2009 05:39:47 +0000 (17:39 +1200)
Fix libtool 2.2.6 warnings for rm

Hopefully future libtool will not need this. Meanhile 2.2.6 does.

configure.in

index 6956dd02c2732d998bf82cae2da955577ed01532..787e6c1d2efefe217c981802a02909607c973389 100644 (file)
@@ -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"