Add ACLOCAL_FLAGS to autogen and --with-wx-config to configure for linux build factory. This is required since there are no system packages for 2.9 (as it hasn't been released yet.)

Originally committed to SVN as r3236.
This commit is contained in:
Amar Takhar 2009-07-23 22:56:04 +00:00
parent 85330c01ae
commit bc7c028538
1 changed files with 6 additions and 1 deletions

View File

@ -124,6 +124,9 @@ flinux.addStep(source.SVN(mode="clobber", svnurl=source_unix))
flinux.addStep(shell.ShellCommand(
command=["./autogen.sh", "--skip-configure"],
env={
'ACLOCAL_FLAGS': '-I /home/verm/build/wx/share/aclocal'
}
name = "autogen",
description = ["autogening"],
descriptionDone = ["autogen"],
@ -134,7 +137,9 @@ flinux.addStep(shell.ShellCommand(
command=["./configure",
WithProperties("--with-build-credit=BuildBot: %s (%s)", "buildername", "slavename"),
"--disable-check-wx-stc",
"--disable-check-wx-opengl"
"--disable-check-wx-opengl",
"--with-wx-config=/home/verm/build/wx/lib/wx/config/gtk2-unicode-debug-2.9"
"
],
env={
'CC': '/usr/lib/ccache/gcc',