File: fix-bashism-related-issue-with-fixman-scripts.patch

package info (click to toggle)
aptitude 0.8.13-8
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 40,556 kB
  • sloc: cpp: 95,285; xml: 31,928; sh: 5,160; makefile: 923; perl: 109; cs: 70; lisp: 55; sed: 16
file content (18 lines) | stat: -rw-r--r-- 685 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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