summaryrefslogtreecommitdiff
path: root/Makeconf
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-10-09 02:42:55 +0000
committerMiles Bader <miles@gnu.org>1996-10-09 02:42:55 +0000
commit8af2303b131971f6a9d9f1706754d0db50f14a93 (patch)
tree1a03488cdf6357e23549039fc735b8d81cab92dc /Makeconf
parentaffe6a46c10b90932fabe0d527ec59cafe7a8ba7 (diff)
($(includedir)/$(installhdrsubdir), $(installationdirlist)):
Suppress command echo (when mkinstalldirs actually does something, it prints the resulting commands itself).
Diffstat (limited to 'Makeconf')
-rw-r--r--Makeconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makeconf b/Makeconf
index 42fca7b3..5bfdd38f 100644
--- a/Makeconf
+++ b/Makeconf
@@ -159,7 +159,7 @@ install: $(libdir) $(includedir)/$(installhdrsubdir) $(addprefix $(libdir)/,$(ta
install-headers: $(includedir)/$(installhdrsubdir) $(addprefix $(includedir)/$(installhdrsubdir)/,$(installhdrs))
$(includedir)/$(installhdrsubdir): $(includedir)
- $(MKINSTALLDIRS) $@
+ @$(MKINSTALLDIRS) $@
# Arrange to have the headers installed locally anytime we build the library.
# Not quite perfect, but at least it does end up getting done; and once done
@@ -192,7 +192,7 @@ install-headers:
# Making installation directories
$(installationdirlist): %:
- $(MKINSTALLDIRS) $@
+ @$(MKINSTALLDIRS) $@
# Building the target
ifeq ($(OBJS),)