diff options
author | Pádraig Brady <P@draigBrady.com> | 2012-12-19 11:44:28 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2012-12-19 11:44:28 +0000 |
commit | e5345f19158ec1153c320b24ebcaf805db2a7bea (patch) | |
tree | 88670f441b8f38e4480446dc5e74652af4e02843 | |
parent | f9bf96bfa7c282394792270c2ed6451b370a5bcd (diff) | |
download | coreutils-e5345f19158ec1153c320b24ebcaf805db2a7bea.tar.gz coreutils-e5345f19158ec1153c320b24ebcaf805db2a7bea.tar.bz2 coreutils-e5345f19158ec1153c320b24ebcaf805db2a7bea.zip |
maint: rewrap a long line noticed by make syntax-check
* configure.ac: Wrap the recently introduced long line.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 295802dc5..423cc962a 100644 --- a/configure.ac +++ b/configure.ac @@ -99,7 +99,8 @@ AC_ARG_ENABLE([gcc-warnings], # certain sections of code. So if this is available and # we're running from a git repo, then auto enable the warnings. gl_gcc_warnings=no - gl_GCC_VERSION_IFELSE([4], [6], [test -d "$srcdir"/.git && gl_gcc_warnings=yes])] + gl_GCC_VERSION_IFELSE([4], [6], + [test -d "$srcdir"/.git && gl_gcc_warnings=yes])] ) if test "$gl_gcc_warnings" = yes; then |