Skip to content

Commit 09a8514

Browse files
authored
Merge pull request #9051 from oech3/quiet-locale
GNUmakefile: Do not use install -v
2 parents b5b8c28 + eb78b6c commit 09a8514

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

GNUmakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ locales:
445445
@if [ -d "$(BASEDIR)/src/uucore/locales" ]; then \
446446
mkdir -p "$(BUILDDIR)/locales/uucore"; \
447447
for locale_file in "$(BASEDIR)"/src/uucore/locales/*.ftl; do \
448-
$(INSTALL) -m 644 -v "$$locale_file" "$(BUILDDIR)/locales/uucore/"; \
448+
$(INSTALL) -m 644 "$$locale_file" "$(BUILDDIR)/locales/uucore/"; \
449449
done; \
450450
fi; \
451451
# Copy utility-specific locales
@@ -454,7 +454,7 @@ locales:
454454
mkdir -p "$(BUILDDIR)/locales/$$prog"; \
455455
for locale_file in "$(BASEDIR)"/src/uu/$$prog/locales/*.ftl; do \
456456
if [ "$$(basename "$$locale_file")" != "en-US.ftl" ]; then \
457-
$(INSTALL) -m 644 -v "$$locale_file" "$(BUILDDIR)/locales/$$prog/"; \
457+
$(INSTALL) -m 644 "$$locale_file" "$(BUILDDIR)/locales/$$prog/"; \
458458
fi; \
459459
done; \
460460
fi; \
@@ -467,7 +467,7 @@ install-locales:
467467
mkdir -p "$(DESTDIR)$(DATAROOTDIR)/locales/$$prog"; \
468468
for locale_file in "$(BASEDIR)"/src/uu/$$prog/locales/*.ftl; do \
469469
if [ "$$(basename "$$locale_file")" != "en-US.ftl" ]; then \
470-
$(INSTALL) -m 644 -v "$$locale_file" "$(DESTDIR)$(DATAROOTDIR)/locales/$$prog/"; \
470+
$(INSTALL) -m 644 "$$locale_file" "$(DESTDIR)$(DATAROOTDIR)/locales/$$prog/"; \
471471
fi; \
472472
done; \
473473
fi; \

0 commit comments

Comments
 (0)