diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-02-26 16:25:59 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-03-09 21:01:38 +0000 |
commit | d5a4ca9962276ab98c04cfd7abb3f8c62389ed66 (patch) | |
tree | a6bff33cf90e0f602568b225f483c89b68685e5d /pkgconfig | |
parent | 3f3fcb0e4c4c28708b618cfefa9e902371bdea5b (diff) | |
download | gstreamer-plugins-base-d5a4ca9962276ab98c04cfd7abb3f8c62389ed66.tar.gz |
build: Make some more rules silent if requested
Diffstat (limited to 'pkgconfig')
-rw-r--r-- | pkgconfig/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am index f0bdfd013..8fb252923 100644 --- a/pkgconfig/Makefile.am +++ b/pkgconfig/Makefile.am @@ -34,11 +34,15 @@ pcverfiles_uninstalled = \ all-local: $(pcverfiles) $(pcverfiles_uninstalled) +cp_verbose = $(cp_verbose_$(V)) +cp_verbose_ = $(cp_verbose_$(AM_DEFAULT_VERBOSITY)) +cp_verbose_0 = @echo " CP $@"; + ### how to generate versioned .pc files from .pc files in this dir %-@GST_MAJORMINOR@.pc: %.pc - cp $< $@ + $(cp_verbose_0)cp $< $@ %-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc - cp $< $@ + $(cp_verbose_0)cp $< $@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = $(pcverfiles) |