diff options
author | Martin Szulecki | 2020-06-04 04:37:52 +0200 |
---|---|---|
committer | Martin Szulecki | 2020-06-04 04:37:52 +0200 |
commit | ee8ab6f5fdde3376e724811c35089c41989f8501 (patch) | |
tree | 836154d77b76a08961707c037f67b7a5c67e2031 | |
parent | 7dc0f1adc5f0f301ee328b59df4237b226bf096c (diff) | |
download | ifuse-ee8ab6f5fdde3376e724811c35089c41989f8501.tar.gz ifuse-ee8ab6f5fdde3376e724811c35089c41989f8501.tar.bz2 |
Break AC_OUTPUT items into separate lines for better version control
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index fac14a5..413f1e8 100644 --- a/configure.ac +++ b/configure.ac @@ -45,7 +45,11 @@ AC_CHECK_FUNCS([strcasecmp strdup strerror strndup]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) -AC_OUTPUT(Makefile src/Makefile docs/Makefile) +AC_OUTPUT([ +Makefile +src/Makefile +docs/Makefile +]) echo " Configuration for $PACKAGE $VERSION: |