diff options
author | Vinson Lee <[email protected]> | 2012-12-31 15:19:43 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2013-01-04 19:10:48 -0800 |
commit | 2f358feda311570610729658cfc2897090c14327 (patch) | |
tree | 5c4c9ac0a4dfa5916795f2f289d46789dc3a7e61 /configure.ac | |
parent | d299ef3ad0bb6beb7f75331d601c693ae2585232 (diff) |
configure.ac: Remove space after indent -T flag.
Fixes this build error on platforms not using GNU indent.
indent: Command line: ``-T'' requires a parameter
Signed-off-by: Vinson Lee <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3b84b1c917e..1414ce8264a 100644 --- a/configure.ac +++ b/configure.ac @@ -73,7 +73,7 @@ AC_PATH_PROG([PERL], [perl]) AC_CHECK_PROG(INDENT, indent, indent, cat) if test "x$INDENT" != "xcat"; then - AC_SUBST(INDENT_FLAGS, '-i4 -nut -br -brs -npcs -ce -T GLubyte -T GLbyte -T Bool') + AC_SUBST(INDENT_FLAGS, '-i4 -nut -br -brs -npcs -ce -TGLubyte -TGLbyte -TBool') fi dnl Our fallback install-sh is a symlink to minstall. Use the existing |