summaryrefslogtreecommitdiff
path: root/autogen.sh
AgeCommit message (Collapse)AuthorFilesLines
2019-04-15Delete autotoolsDylan Baker1-14/+0
Acked-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Eric Engestrom <eric.engestrom@intel.com> Acked-by: Marek Olšák <marek.olsak@amd.com> Acked-by: Jason Ekstrand <jason@jlekstrand.net> Acked-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Acked-by: Matt Turner <mattst88@gmail.com>
2015-03-11autogen.sh: pass --force to autoreconf, quote ORIGDIREmil Velikov1-2/+2
By passing --force autoreconf will update all the aux files, which would otherwise be ignored if one updates autoconf/automake. Quote the ORIGDIR variable to prevent fall-outs, when its name contains space. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
2012-08-14build: Fix autogen.sh to allow out-of-tree buildsMatt Turner1-8/+2
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2011-09-19autogen.sh: Honor NOCONFIGURE environment variableColin Walters1-1/+3
See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Dave Airlie <airlied@redhat.com>
2009-02-10autogen: Make sure MAKEFLAGS is not set before running autoreconfBenjamin Close1-0/+2
Without this the "w" flag may be set which causes the version to be incorrectly to be obtains in configure.ac causing configure to fail miserably
2008-03-10autoconf: Add autogen.sh from Xorg for easier setup from gitDan Nicholson1-0/+16
The defacto method to rebuild the autotools and run the generated configure is an autogen.sh script. It is much more discoverable than the custom `make configure' used here. The Makefile targets are still useful for creating tarballs, though. This autogen.sh is copied from Xorg.