[Buildbot-devel] Fail to buildbot to build nginx(./auto/configure not found)

Charles Lepple clepple at gmail.com
Wed Jan 8 12:13:45 UTC 2014


On Jan 7, 2014, at 1:33 PM, Mail Robert wrote:

> nginx_factory.addStep(Configure(command=["./auto/configure
> --without-http_rewrite_module --without-http_gzip_module"]))
[...]
> I've noticed it said file not found. But the file is there correctly.

I think you want to use either the array syntax (with one argument per array element):

> nginx_factory.addStep(Configure(command=["./auto/configure",
> 	"--without-http_rewrite_module", "--without-http_gzip_module"]))

Or a single string, not enclosed in an array:

> nginx_factory.addStep(Configure(command="./auto/configure
> --without-http_rewrite_module --without-http_gzip_module"))

-- 
Charles Lepple
clepple at gmail







More information about the devel mailing list