Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常 macruby 想通过 'rake install' 安装到 /usr/local
我想要它在另一个位置。我该怎么做呢?
运行 rake -T 提供选项(呃,愚蠢的我)
它告诉我
rake install sym_instdir=/some/place
是安装到另一个目录的技巧,这确实有效。
编辑:我说得太早了。
这使得符号链接,但也有 framework_instdir 选项,但改变似乎没有任何区别......
$ DESTDIR = /some/place rake install
查看每晚构建的 rake 任务以获得更具体的示例。