Skip to content
Commits on Source (2)
lynx (2.8.9dev16-3) UNRELEASED; urgency=medium
[ Axel Beckert ]
* Declare compliance with Debian Policy 4.1.3. (No changes needed.)
* Add hint to debian/compat why Lynx FTBFS with dh compat level 11.
* Update Vcs-* headers for move to salsa.debian.org.
[ Adrian Bunk ]
* Patch po/makefile.inn to use unique names for temporary files. Fixes
parallel build FTBFS. (Closes: #890811)
-- Axel Beckert <abe@debian.org> Sun, 03 Dec 2017 03:07:25 +0100
lynx (2.8.9dev16-2) unstable; urgency=low
......
Description: po/makefile.inn: Use unique names for temporary files
Fixes parallel build FTBFS.
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/890811
--- lynx-2.8.9dev16.orig/po/makefile.inn
+++ lynx-2.8.9dev16/po/makefile.inn
@@ -89,23 +89,23 @@ INSTOBJ = $(NLS_TEXTDOMAIN)$(INSTOBJEXT
@echo "translating $< to $@"
@$(SHELL) -c 'LC_ALL=C \
sed -e s,http://lynx.browser.org/,@HOMEPAGE_URL@,g \
- -e s,http://lynx.isc.org/,@HOMEPAGE_URL@,g $< >pass1.tmp;\
- if cmp -s $< pass1.tmp; \
+ -e s,http://lynx.isc.org/,@HOMEPAGE_URL@,g $< >pass1.$@.tmp;\
+ if cmp -s $< pass1.$@.tmp; \
then \
echo ...no change made to homepage URL; \
else \
echo ...updated homepage URL;\
fi; \
- if $(MSGMERGE) -w 132 pass1.tmp $(srcdir)/$(PACKAGE).pot -o pass2.tmp; \
+ if $(MSGMERGE) -w 132 pass1.$@.tmp $(srcdir)/$(PACKAGE).pot -o pass2.$@.tmp; \
then \
echo "...merged against $(srcdir)/$(PACKAGE).pot";\
else \
echo "...workaround without merging against $(srcdir)/$(PACKAGE).pot";\
- cat $< >pass2.tmp; \
+ cat $< >pass2.$@.tmp; \
fi '
@ECHO_CC@file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
- && rm -f $$file && $(GMSGFMT) -o $$file pass2.tmp
- @-rm -f pass*.tmp
+ && rm -f $$file && $(GMSGFMT) -o $$file pass2.$@.tmp
+ @-rm -f pass*.$@.tmp
.po.cat:
@echo "translating $< to $@"
......@@ -2,3 +2,4 @@ lynxcfg.patch
aboutlynx.patch
21_do_not_strip_-g.diff
nested_tables.patch
parallel.patch