diff options
author | Emil Velikov <emil.velikov@collabora.com> | 2016-04-05 14:29:41 +0100 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-04-11 19:08:23 +0100 |
commit | c481c8f7f135d4cf17e35bb5126bdcf6b5611940 (patch) | |
tree | 4f1c066f2801307260c504732e8eeeb00105ab1e | |
parent | 4db8f15a257679b90ad98f8fb46bbb71d2075cfa (diff) | |
download | external_mesa3d-c481c8f7f135d4cf17e35bb5126bdcf6b5611940.zip external_mesa3d-c481c8f7f135d4cf17e35bb5126bdcf6b5611940.tar.gz external_mesa3d-c481c8f7f135d4cf17e35bb5126bdcf6b5611940.tar.bz2 |
configure.ac: update the path of the generated files
... in order to determine if we need bison/flex. Failing to locate the
files will lead to mandating bison/flex even when building from a
release tarball.
CC: "11.2" <mesa-stable@lists.freedesktop.org>
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Acked-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Matt Turner <mattst88@gmail.com>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index ffd51db..c426c72 100644 --- a/configure.ac +++ b/configure.ac @@ -110,10 +110,10 @@ LT_INIT([disable-static]) AC_CHECK_PROG(RM, rm, [rm -f]) AX_PROG_BISON([], - AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-parse.c"], + AS_IF([test ! -f "$srcdir/src/compiler/glsl/glcpp/glcpp-parse.c"], [AC_MSG_ERROR([bison not found - unable to compile glcpp-parse.y])])) AX_PROG_FLEX([], - AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-lex.c"], + AS_IF([test ! -f "$srcdir/src/compiler/glsl/glcpp/glcpp-lex.c"], [AC_MSG_ERROR([flex not found - unable to compile glcpp-lex.l])])) AC_CHECK_PROG(INDENT, indent, indent, cat) |