xkeyboard-config needs extra env variables to be set during autoreconf and that is handled in the autogen.sh script. If we invoke autoreconf directly, we fail on this repo.
Signed-off-by: Peter Hutterer <[email protected]> --- Sending this out so Sergey can use it now, I haven't tested this on all repos yet. But I think we have an autogen.sh everywhere anyway, so I don't expect that to fail. release.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/release.sh b/release.sh index e0209bc..c894063 100755 --- a/release.sh +++ b/release.sh @@ -384,14 +384,8 @@ process_module() { return 1 fi - echo "Info: generating configure." - autoreconf --force --install >/dev/null - if [ $? -ne 0 ]; then - echo "Error: failed to generate configure." - return 1 - fi - - ./configure >/dev/null + echo "Info: running autogen.sh" + ./autogen.sh >/dev/null if [ $? -ne 0 ]; then echo "Error: failed to configure module." cd $top_src -- 2.9.3 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: https://lists.x.org/mailman/listinfo/xorg-devel
