我在运行./configure时提醒 我的,但我libtool确实是装了

解决了跟大家分享一下:在configure里面 RM='$RM  -f'   这里的$RM后面一定有一个空格。 如果后面没有空格,直接连接减号,就依

然会报错。把RM='$RM'改为RM='$RM  -f'

如下所示:

# See if we are running on zsh, and set the options which allow our
# commands through without removal of  escapes INIT.
if test -n "${ZSH_VERSION+set}" ; then
   setopt NO_GLOB_SUBST
fi


    PACKAGE='$PACKAGE'
    VERSION='$VERSION'
    TIMESTAMP='$TIMESTAMP'
    RM='$RM -f'
    ofile='$ofile'
原文地址:https://www.cnblogs.com/arcer/p/5679695.html