Comment 1 for bug 1162325

Revision history for this message
Adam Dingle (adam-yorba) wrote : Re: bake ignores install-directory

Actually I've found that if I specify a binary-directory at top level, Bake will install there:

===
package.name = test
package.version = 0.0.1

binary-directory=/a/b/c

programs.test {
  sources = test.vala
}
===

$ bake install
MKDIR /a/b/c
mkdir: cannot create directory ‘/a’: Permission denied
mkdir -p /a/b/c
[Command exited with return value 1]
[Build failed]
$

Is this just a documentation bug? In other words, is the existing behavior correct?