mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 01:50:42 -05:00
Use AM_SILENT_RULES if automake >= 1.11 is installed
Fixes bug: http://bugzilla.openedhand.com/show_bug.cgi?id=1756 Based on a patch by: Javier Jardón <javierjc1982@gmail.com>
This commit is contained in:
parent
6a9130f10f
commit
373b165b3f
@ -1,7 +1,10 @@
|
||||
NULL =
|
||||
V = @
|
||||
Q = $(V:1=)
|
||||
|
||||
if USE_SHAVE
|
||||
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
|
||||
else
|
||||
QUIET_GEN = $(AM_V_GEN)
|
||||
endif # USE_SHAVE
|
||||
|
||||
SUBDIRS = cogl pango $(backendextra) $(clutterbackend)
|
||||
|
||||
|
@ -1,8 +1,10 @@
|
||||
NULL =
|
||||
|
||||
V = @
|
||||
Q = $(V:1=)
|
||||
if USE_SHAVE
|
||||
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
|
||||
else
|
||||
QUIET_GEN = $(AM_V_GEN)
|
||||
endif # USE_SHAVE
|
||||
|
||||
SUBDIRS = common $(CLUTTER_COGL)
|
||||
|
||||
|
@ -1,9 +1,10 @@
|
||||
NULL =
|
||||
|
||||
V = @
|
||||
Q = $(V:1=)
|
||||
if USE_SHAVE
|
||||
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
|
||||
QUIET_CP = $(Q:@=@echo ' CP '$@;)
|
||||
else
|
||||
QUIET_GEN = $(AM_V_GEN)
|
||||
endif # USE_SHAVE
|
||||
|
||||
INCLUDES = \
|
||||
-I$(top_srcdir) \
|
||||
|
18
configure.ac
18
configure.ac
@ -757,14 +757,26 @@ GLIB_DEFINE_LOCALEDIR(LOCALEDIR)
|
||||
|
||||
dnl ===========================================================================
|
||||
|
||||
SHAVE_INIT([build/autotools], [enable])
|
||||
m4_ifdef([AM_SILENT_RULES],
|
||||
[
|
||||
AM_SILENT_RULES([yes])
|
||||
use_shave=no
|
||||
],
|
||||
[
|
||||
SHAVE_INIT([build/autotools], [enable])
|
||||
AC_CONFIG_FILES([
|
||||
build/autotools/shave
|
||||
build/autotools/shave-libtool
|
||||
])
|
||||
use_shave=yes
|
||||
])
|
||||
|
||||
AM_CONDITIONAL([USE_SHAVE], [test "x$use_shave" = "xyes"])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
build/Makefile
|
||||
build/autotools/Makefile
|
||||
build/autotools/shave
|
||||
build/autotools/shave-libtool
|
||||
clutter/Makefile
|
||||
clutter/clutter-version.h
|
||||
clutter/clutter-json.h
|
||||
|
Loading…
Reference in New Issue
Block a user