aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches/090_parallel-make.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/090_parallel-make.patch')
-rw-r--r--debian/patches/090_parallel-make.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/patches/090_parallel-make.patch b/debian/patches/090_parallel-make.patch
deleted file mode 100644
index 01a333a..0000000
--- a/debian/patches/090_parallel-make.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Subject: Fix parallel make issue
-From: Tatsuya Kinoshita <tats@debian.org>
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=726188
-Bug-Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=362249
-Bug: https://sourceforge.net/p/w3m/patches/64/
-
- Depend on funcname.tab to fix parallel make issue of scripts
-
- Avoid prerequisite $(IMGOBJS) to fix parallel make issue of w3mimg
-
-diff --git a/Makefile.in b/Makefile.in
-index 52a0aae..b283f29 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -250,7 +250,7 @@ install-po:
- (cd $$subdir && $(MAKE) install); \
- done
-
--all-scripts:
-+all-scripts: funcname.tab
- for dir in $(SCRIPTSUBDIRS); \
- do \
- (cd $$dir && $(MAKE) $(MAKE_ARGS)); \
-diff --git a/w3mimg/Makefile.in b/w3mimg/Makefile.in
-index dfc550c..8e2ad73 100644
---- a/w3mimg/Makefile.in
-+++ b/w3mimg/Makefile.in
-@@ -16,9 +16,9 @@ IMGCFLAGS=@IMGX11CFLAGS@ @IMGFBCFLAGS@ @IMGWINCFLAGS@
- IMGOBJS=@IMGOBJS@
-
- .PHONY: $(SUBDIRS)
--all: @IMGTARGETS@ w3mimg.a
-+all: w3mimg.a
-
--w3mimg.a: $(IMGOBJS)
-+w3mimg.a: w3mimg.o @IMGTARGETS@
- $(AR) rv $@ $(IMGOBJS)
- $(RANLIB) $@
-