diff options
author | Matt Turner <[email protected]> | 2013-02-21 18:13:46 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-12-12 12:11:46 -0800 |
commit | dd439e494e4191ec29c8ac1dfff7f9dd979f4581 (patch) | |
tree | 3518da82ab3d674b2de905eb2fbb38287a4bcc96 | |
parent | 8280358cf1a7f44007f5a635f54ec3d2ef39e51b (diff) |
configure.ac: Use tar-ustar archive format.
The default tar-v7 archive format doesn't support filenames longer than
99 characters, of which we have a few (in src/glsl/tests/lower_jumps/).
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c1843c99d1f..a0fe7c63836 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AC_INIT([Mesa], [MESA_VERSION], AC_CONFIG_AUX_DIR([bin]) AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE([foreign]) +AM_INIT_AUTOMAKE([foreign tar-ustar]) # Support silent build rules, requires at least automake-1.11. Disable # by either passing --disable-silent-rules to configure or passing V=1 |