From: Eric Blake Date: Fri, 10 Sep 2010 02:10:33 +0000 (-0600) Subject: maint: silence warning from libtool X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8a93dafc5fca48f93c66d77edec6080e4c9af8aa;p=libvirt.git maint: silence warning from libtool I got tired of seeing this. config.status: executing libtool commands /bin/rm: cannot remove `libtoolT': No such file or directory config.status: executing po-directories commands While I was at it, there were a couple other unused variables. * configure.ac (RM, MV, TAR): Drop; nothing in libvirt directly uses this, and assigning RM interferes with libtool. --- diff --git a/configure.ac b/configure.ac index ecaf9cbd4d..23181dd245 100644 --- a/configure.ac +++ b/configure.ac @@ -122,9 +122,6 @@ AM_CONDITIONAL([HAVE_GLIBC_RPCGEN], $ac_cv_path_RPCGEN -t /dev/null 2>&1]) dnl Miscellaneous external programs. -AC_PATH_PROG([RM], [rm], [/bin/rm]) -AC_PATH_PROG([MV], [mv], [/bin/mv]) -AC_PATH_PROG([TAR], [tar], [/bin/tar]) AC_PATH_PROG([XMLLINT], [xmllint], [/usr/bin/xmllint]) AC_PATH_PROG([XMLCATALOG], [xmlcatalog], [/usr/bin/xmlcatalog]) AC_PATH_PROG([XSLTPROC], [xsltproc], [/usr/bin/xsltproc])