diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-02-11 22:15:22 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-02-12 23:52:45 -0800 |
commit | 04fc814efd6d1fbcd06963d07d2027ccaf86936e (patch) | |
tree | 9592fb1432c23fb84f2559ebfa2d0585b82354e1 | |
parent | 22e808a18673f8ea82250a27310873d13cf9a680 (diff) | |
download | xrdp-proprietary-04fc814efd6d1fbcd06963d07d2027ccaf86936e.tar.gz xrdp-proprietary-04fc814efd6d1fbcd06963d07d2027ccaf86936e.zip |
Use silent rules by default if supported by Automake
Silent rules make warnings stand out, so they are fixed early.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index efb307ac..099b623f 100644 --- a/configure.ac +++ b/configure.ac @@ -10,6 +10,9 @@ AC_C_CONST AC_PROG_LIBTOOL PKG_PROG_PKG_CONFIG +# Use silent rules by default if supported by Automake +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + case $host_os in *linux*) linux=yes |