CMake安装文件权限不是正确的权限

时间:2019-03-27 14:24:29

标签: cmake debian

我正在使用CMake制作Debian软件包,并且正在安装需要编辑的文件(又具有写权限)

我尝试使用此solution,但它对我不起作用。

我还尝试查看CMake docs,但那里没有任何帮助。

function anilogg_footer() {?>
    <style>
    @media only screen and (min-width:481px){
        .fixed-menu{
            display:none;
        }
    #fixed-button{
    display:none;
}
     }
    @media only screen and (max-width: 480px) {
    ul.fixed-menu{
        position:fixed;
        bottom:0;
        width:100%;
        background:white;
        height:50px;
        border-top:1px solid #e40000;
    }
    .fixed-menu li {
   display:inline-block;
   text-align:center;
        color:#e40000;
        width:23%;
        line-height:50px;
        font-size:1.5rem;

  }
    .fixed-menu li:2n{
        border-left:1px solid #fff;
    }
    #fixed-button a{
        display:block;
        width:50px;
        height:50px;
        background:#e40000;
        color:white;
        position:fixed;
        right:15px;
        bottom:65px;
        border-radius:50%;
        text-align:center;
        line-height:50px;
        font-size:2rem;
    }
}
    </style>   
        <div id="fixed-button">
        <a href="#" class="fixed-menu">
        <span class="icon-videocam"></span>
        </a>
        </div>
      <div class="anilogg_buddypress">
        <ul class="fixed-menu">
    <li><span class="icon-home"></span></li>
    <li><span class="icon-mail"> </span></li>
    <li><span class="icon-bell"></span></li>
    <li><span class="icon-user"></span></li>

        </ul>
    </div>

    <?php }
    add_action( 'wp_footer', 'anilogg_footer' );

    if(is_page('login')){
    ?>
    <style>
    .fixed-menu{
        display:none;
    }
    #fixed-button{
    display:none;
    }
        </style>
    <?php }
    else{
    }

当我安装Debian软件包时,它将文件放置在正确的位置,但没有我指定的权限。当我寻找-rwxrwxrwx时,它会赋予-rwxr-xr-x权限。

0 个答案:

没有答案