zoukankan      html  css  js  c++  java
  • 我在运行./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'
  • 相关阅读:
    npm
    模块化开发
    Html input 标签
    H5 移动端布局
    Mysql指令
    php面向对象
    git指令
    css3 属性
    如何渲染数据
    angular 服务
  • 原文地址:https://www.cnblogs.com/arcer/p/5679695.html
Copyright © 2011-2022 走看看