Uploaded image for project: 'Qbs ("Cubes")'
  1. Qbs ("Cubes")
  2. QBS-1826

Error when generating iOS codesign entitlements: cannot read property 'bundle' of undefined

    XMLWordPrintable

Details

    • macOS
    • 217c7add0 (2.6)

    Description

      When building our iOS app with 2.5.0 we get the following error:

      ERROR: cannot read property 'bundle' of undefined
          in /usr/local/Cellar/qbs/2.5.0/share/qbs/modules/codesign/codesign.js:571
      

      Apparently the 'product' argument of the function 'generateAppleEntitlementsCommands' in the js file mentioned above is undefined when it is called.

      Looking into "apple/codesign.qbs" the invocation is as follows as the prepare script of the rule:

      Rule {
          ...
          prepare: CodeSign.generateAppleEntitlementsCommands(CodeSign, arguments)
      }
      

      I don't quite understand this. Why is it called with 'CodeSign' as the first parameter? And does 'arguments' have any special significance here?
      Because aside from being moved into a Group item this rule hasn't changed from when it used to work.

      For the time being I fixed it by simply calling the function inside of the prepare script and returning the result:

      prepare: {
          return CodeSign.generateAppleEntitlementsCommands(project, product, inputs, outputs, input, output, explicitlyDependsOn);
      }
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            kandeler Christian Kandeler
            lbuckel Leon Buckel
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes