mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-06 02:26:34 +00:00
a734bf2478
Co-Authored-By: kawanakaiku <80381779+kawanakaiku@users.noreply.github.com>
19 lines
685 B
Diff
19 lines
685 B
Diff
Description: Fix bashism-related issue with fixman i18n scripts
|
|
Simply calling them as script instead of forking them seems to do the trick.
|
|
Author: Axel Beckert <abe@debian.org>
|
|
Bug-Debian: https://bugs.debian.org/999383
|
|
|
|
diff --git a/buildlib/docbook.mk b/buildlib/docbook.mk
|
|
index 9ec1b433..de03f0b4 100644
|
|
--- a/buildlib/docbook.mk
|
|
+++ b/buildlib/docbook.mk
|
|
@@ -129,7 +129,7 @@ docbook-man-stamp: $(DOCBOOK_XML) aptitude-man.xsl aptitude-common.xsl
|
|
@if [ -x "$(srcdir)/fixman" ]; then \
|
|
for i in $(DOCBOOK_MANS); do \
|
|
echo "$(srcdir)/fixman $$i"; \
|
|
- . $(srcdir)/fixman $$i; \
|
|
+ $(srcdir)/fixman $$i; \
|
|
done; \
|
|
fi
|
|
touch docbook-man-stamp
|