Skip to content

Commit 08052bb

Browse files
PeterFeichtp12tic
authored andcommitted
Makefile: Make build more silent.
Zipping the release packages spews all filenames to the console, that's just not necessary, fixed.
1 parent e28ea28 commit 08052bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,21 +119,21 @@ release: all
119119
mkdir -p "cppreference-doc-$(VERSION)"
120120
cp -r $(DISTFILES) "cppreference-doc-$(VERSION)"
121121
tar c$(TAR_OPTION)f "release/cppreference-doc-$(VERSION).tar.$(TAR_FORMAT)" "cppreference-doc-$(VERSION)"
122-
zip -r "release/cppreference-doc-$(VERSION).zip" "cppreference-doc-$(VERSION)"
122+
zip -qr "release/cppreference-doc-$(VERSION).zip" "cppreference-doc-$(VERSION)"
123123
rm -rf "cppreference-doc-$(VERSION)"
124124

125125
# zip the html output
126126
pushd "output"; \
127127
tar c$(TAR_OPTION)f "../release/html-book-$(VERSION).tar.$(TAR_FORMAT)" "reference" \
128128
"cppreference-doxygen-local.tag.xml" ; \
129-
zip -r "../release/html-book-$(VERSION).zip" "reference" \
129+
zip -qr "../release/html-book-$(VERSION).zip" "reference" \
130130
"cppreference-doxygen-local.tag.xml" ; \
131131
popd
132132

133133
# zip qch
134134
pushd "output"; \
135135
tar c$(TAR_OPTION)f "../release/qch-book-$(VERSION).tar.$(TAR_FORMAT)" "cppreference-doc-en-cpp.qch"; \
136-
zip -r "../release/qch-book-$(VERSION).zip" "cppreference-doc-en-cpp.qch"; \
136+
zip -qr "../release/qch-book-$(VERSION).zip" "cppreference-doc-en-cpp.qch"; \
137137
popd
138138

139139
#WORKER RULES

0 commit comments

Comments
 (0)