File: 0020-Remove-compiling-message-for-blhc.patch

package info (click to toggle)
shaarli 0.14.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 5,612 kB
  • sloc: php: 30,001; javascript: 2,083; makefile: 139; xml: 69; python: 42; sh: 35
file content (21 lines) | stat: -rw-r--r-- 578 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: James Valleroy <jvalleroy@mailbox.org>
Date: Tue, 6 Feb 2024 18:25:47 -0500
Subject: Remove compiling message for blhc

Forwared: not-needed
---
 Makefile | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Makefile b/Makefile
index fa84821..c339615 100644
--- a/Makefile
+++ b/Makefile
@@ -170,7 +170,6 @@ translate:
 	@echo "Compile translation files"
 	@echo "----------------------"
 	@for pofile in `find inc/languages/ -name shaarli.po`; do \
-		echo "Compiling $$pofile"; \
 		msgfmt -v "$$pofile" -o "`dirname "$$pofile"`/`basename "$$pofile" .po`.mo"; \
 	done;