]> sourceware.org Git - lvm2.git/commitdiff
makefiles: quite install
authorZdenek Kabelac <zkabelac@redhat.com>
Sat, 15 Dec 2018 00:47:24 +0000 (01:47 +0100)
committerZdenek Kabelac <zkabelac@redhat.com>
Mon, 17 Dec 2018 09:36:52 +0000 (10:36 +0100)
conf/Makefile.in
scripts/Makefile.in

index e9068359ab382fea73090de8bf0f8739aff16c58..dc74747cbc7d1e8191b48e3ab7b83dd8df1866ed 100644 (file)
@@ -39,18 +39,19 @@ generate:
 install_conf: $(CONFSRC)
        @if [ ! -e $(confdir)/$(CONFDEST) ]; then \
                echo "$(INSTALL_WDATA) -D $< $(confdir)/$(CONFDEST)"; \
-               $(INSTALL_WDATA) -D $< $(confdir)/$(CONFDEST); \
+               $(Q) $(INSTALL_WDATA) -D $< $(confdir)/$(CONFDEST); \
        fi
 
 install_localconf: $(CONFLOCAL)
        @if [ ! -e $(confdir)/$(CONFLOCAL) ]; then \
                echo "$(INSTALL_WDATA) -D $< $(confdir)/$(CONFLOCAL)"; \
-               $(INSTALL_WDATA) -D $< $(confdir)/$(CONFLOCAL); \
+               $(Q) $(INSTALL_WDATA) -D $< $(confdir)/$(CONFLOCAL); \
        fi
 
 install_profiles: $(PROFILES)
-       $(INSTALL_DIR) $(profiledir)
-       $(INSTALL_DATA) $(PROFILES) $(profiledir)/
+       @echo "    [INSTALL] $<"
+       $(Q) $(INSTALL_DIR) $(profiledir)
+       $(Q) $(INSTALL_DATA) $(PROFILES) $(profiledir)/
 
 install_lvm2: install_conf install_localconf install_profiles
 
index 99acfbca2d8f295a4f35b672b011d4577f41ae76..6c8546de88900874a555adbe7403de48e69b41ef 100644 (file)
@@ -124,8 +124,9 @@ install_systemd_units:      install_dbus_service
 endif
 
 install_tmpfiles_configuration:
-       $(INSTALL_DIR) $(tmpfiles_dir)
-       $(INSTALL_DATA) lvm2_tmpfiles_red_hat.conf $(tmpfiles_dir)/lvm2.conf
+       @echo "    [INSTALL] $<"
+       $(Q) $(INSTALL_DIR) $(tmpfiles_dir)
+       $(Q) $(INSTALL_DATA) lvm2_tmpfiles_red_hat.conf $(tmpfiles_dir)/lvm2.conf
 
 DISTCLEAN_TARGETS += \
        blkdeactivate.sh \
This page took 0.042216 seconds and 5 git commands to generate.