mirror of
https://github.com/brl/mutter.git
synced 2024-11-29 19:40:43 -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 =
|
NULL =
|
||||||
V = @
|
|
||||||
Q = $(V:1=)
|
if USE_SHAVE
|
||||||
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
|
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
|
||||||
|
else
|
||||||
|
QUIET_GEN = $(AM_V_GEN)
|
||||||
|
endif # USE_SHAVE
|
||||||
|
|
||||||
SUBDIRS = cogl pango $(backendextra) $(clutterbackend)
|
SUBDIRS = cogl pango $(backendextra) $(clutterbackend)
|
||||||
|
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
NULL =
|
NULL =
|
||||||
|
|
||||||
V = @
|
if USE_SHAVE
|
||||||
Q = $(V:1=)
|
|
||||||
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
|
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
|
||||||
|
else
|
||||||
|
QUIET_GEN = $(AM_V_GEN)
|
||||||
|
endif # USE_SHAVE
|
||||||
|
|
||||||
SUBDIRS = common $(CLUTTER_COGL)
|
SUBDIRS = common $(CLUTTER_COGL)
|
||||||
|
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
NULL =
|
NULL =
|
||||||
|
|
||||||
V = @
|
if USE_SHAVE
|
||||||
Q = $(V:1=)
|
|
||||||
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
|
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
|
||||||
QUIET_CP = $(Q:@=@echo ' CP '$@;)
|
else
|
||||||
|
QUIET_GEN = $(AM_V_GEN)
|
||||||
|
endif # USE_SHAVE
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
|
16
configure.ac
16
configure.ac
@ -757,14 +757,26 @@ GLIB_DEFINE_LOCALEDIR(LOCALEDIR)
|
|||||||
|
|
||||||
dnl ===========================================================================
|
dnl ===========================================================================
|
||||||
|
|
||||||
|
m4_ifdef([AM_SILENT_RULES],
|
||||||
|
[
|
||||||
|
AM_SILENT_RULES([yes])
|
||||||
|
use_shave=no
|
||||||
|
],
|
||||||
|
[
|
||||||
SHAVE_INIT([build/autotools], [enable])
|
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([
|
AC_CONFIG_FILES([
|
||||||
Makefile
|
Makefile
|
||||||
build/Makefile
|
build/Makefile
|
||||||
build/autotools/Makefile
|
build/autotools/Makefile
|
||||||
build/autotools/shave
|
|
||||||
build/autotools/shave-libtool
|
|
||||||
clutter/Makefile
|
clutter/Makefile
|
||||||
clutter/clutter-version.h
|
clutter/clutter-version.h
|
||||||
clutter/clutter-json.h
|
clutter/clutter-json.h
|
||||||
|
Loading…
Reference in New Issue
Block a user