语法错误:Make期间未终止的带引号的字符串

时间:2015-06-23 09:12:24

标签: ruby makefile

我目前正在使用由mkmf的create_makefile()模块生成的make文件。我有两个疑问:

1。 make文件中生成的路径为/ C / ...而不是C:/ as    预计由Windows。有没有办法生成正确的路径    每个Windows?

2。 makefile的内容为:

Image{
    id: logo
    x: 29
    source: "LSFO-IngeniiSymbol.png"
    width: 70
    height: 70
    states: State {
        name: "rotated" ; when: area.pressed
        PropertyChanges {target: logo; rotation: 360 }

    }

    transitions: Transition {
        RotationAnimation { 
            id: rotateanimate
            duration: 1000
            direction: RotationAnimation.Clockwise
        }
    }

    MouseArea {
        id: area
        anchors.fill: parent 
        onClicked: {
            logo.state = "rotated"
           // pageloader.source = "HelpDoc.qml"
           // pageloader.source = ""
           // pageloader.source = "HelpDoc.qml"
        } 
    }
}    

当我从提示符运行 ruby: ruby -e "puts 'EXPORTS'" 命令时    作品。我也在使用Ruby版本1.8.6和Linux的Linux机器上试过它    make运行没有错误。但是当我在Windows上运行make时,    Ruby版本1.9.3,它给出了以下错误:

[ruby -e "puts 'EXPORTS'"]

如何修复此错误?我在StackOverflow上看到类似的问题,但是错误不同或者问题没有答案。

0 个答案:

没有答案