diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2015-01-24 14:36:40 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2015-01-24 14:37:05 +0000 |
commit | 8595cb4102d547388d0d9e699d10a14f8f7aa71c (patch) | |
tree | cd27e4b710769000b651b9af4db2704a1cd328dd /debian/patches/090_parallel-make.patch | |
parent | Update Vcs-Browser (diff) | |
download | w3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.tar.gz w3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.zip |
Integrate Debian changes into 020_debian.patch (closes: #776112)
(debian/patches/*.patch except 010_upstream.patch are merged)
Diffstat (limited to 'debian/patches/090_parallel-make.patch')
-rw-r--r-- | debian/patches/090_parallel-make.patch | 39 |
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) $@ - |