From 50f3dba07e569f6ef3070e47cc1e5866c3684811 Mon Sep 17 00:00:00 2001 From: Pierre-Marc Fournier Date: Tue, 27 Apr 2010 14:40:48 -0400 Subject: [PATCH] change to silent compilation --- bootstrap | 10 +++++----- configure.ac | 3 ++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/bootstrap b/bootstrap index c507425..45d79b9 100755 --- a/bootstrap +++ b/bootstrap @@ -4,9 +4,9 @@ set -x if [ ! -e config ]; then mkdir config fi -aclocal -libtoolize --force --copy -autoheader -automake --add-missing --copy -autoconf +if [ ! -e m4 ]; then + mkdir m4 +fi + +autoreconf diff --git a/configure.ac b/configure.ac index 0904c26..f9282f8 100644 --- a/configure.ac +++ b/configure.ac @@ -6,8 +6,9 @@ AC_INIT([ust], [0.4], [pierre-marc dot fournier at polymtl dot ca]) AC_CONFIG_AUX_DIR([config]) AC_CANONICAL_TARGET AC_CANONICAL_HOST -AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_MACRO_DIR([config]) AM_INIT_AUTOMAKE([foreign]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_SRCDIR([ustctl/ustctl.c]) AC_CONFIG_HEADERS([config.h]) -- 2.34.1