1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Thomas Perret <thomas.perret@phyx.fr>
Date: Wed, 11 Sep 2024 23:38:20 +0200
Subject: Remove output to stderr
Forwarded: not-needed
/dev/stderr is not always available. In particular, it doesn't seem to
be available on reproducible-builds.org workers.
---
paperwork-gtk/src/paperwork_gtk/model/help/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/paperwork-gtk/src/paperwork_gtk/model/help/Makefile b/paperwork-gtk/src/paperwork_gtk/model/help/Makefile
index 727a4c1..3e3f5c1 100644
--- a/paperwork-gtk/src/paperwork_gtk/model/help/Makefile
+++ b/paperwork-gtk/src/paperwork_gtk/model/help/Makefile
@@ -5,7 +5,7 @@ out/paperwork_going_up.png: data/paperwork_going_up.svg
out/main_window.png:
# screnshots
- [ -f $(CURDIR)/${OUT_INTRO_PDF} ] || LANG=C WAYLAND_DISPLAY= xvfb-run -a -e /dev/stderr sh ./screenshot.sh
+ [ -f $(CURDIR)/${OUT_INTRO_PDF} ] || LANG=C WAYLAND_DISPLAY= xvfb-run -a sh ./screenshot.sh
l10n_extract:
# will generate out/translated_*_$lang.tex files
|