diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2018-10-18 12:50:24 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-10-18 12:50:45 +0200 |
commit | 6526a590e6e3706ae8ee6b639d629e9673932af2 (patch) | |
tree | e9c09fc8e636d665de3895a02534603fc1600b21 /net-libs/gsoap | |
parent | media-libs/tiff: fix Prefix install, thanks Olivier Huber (diff) | |
download | gentoo-6526a590e6e3706ae8ee6b639d629e9673932af2.tar.gz gentoo-6526a590e6e3706ae8ee6b639d629e9673932af2.tar.bz2 gentoo-6526a590e6e3706ae8ee6b639d629e9673932af2.zip |
net-libs/gsoap: Fixed parallel make issue.
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'net-libs/gsoap')
-rw-r--r-- | net-libs/gsoap/files/gsoap-2.8.70-parallel.patch | 10 | ||||
-rw-r--r-- | net-libs/gsoap/gsoap-2.8.70.ebuild | 7 |
2 files changed, 13 insertions, 4 deletions
diff --git a/net-libs/gsoap/files/gsoap-2.8.70-parallel.patch b/net-libs/gsoap/files/gsoap-2.8.70-parallel.patch new file mode 100644 index 000000000000..8abd36d937c9 --- /dev/null +++ b/net-libs/gsoap/files/gsoap-2.8.70-parallel.patch @@ -0,0 +1,10 @@ +--- gsoap-2.8/gsoap/src/Makefile.am ++++ gsoap-2.8/gsoap/src/Makefile.am +@@ -5,6 +5,7 @@ + ## you have all needed files, that a GNU package needs + AUTOMAKE_OPTIONS = foreign 1.4 + ++include MakefileManual + + #LIBS= + AM_YFLAGS=-d -v diff --git a/net-libs/gsoap/gsoap-2.8.70.ebuild b/net-libs/gsoap/gsoap-2.8.70.ebuild index 0abfb9e600cb..f09037b2e0fd 100644 --- a/net-libs/gsoap/gsoap-2.8.70.ebuild +++ b/net-libs/gsoap/gsoap-2.8.70.ebuild @@ -39,6 +39,9 @@ PATCHES=( # Fix --enable-xlocale configure switch "${FILESDIR}/${PN}-2.8.70-xlocale_h.patch" + + # Fix parallel make + "${FILESDIR}/${PN}-2.8.70-parallel.patch" ) S="${WORKDIR}/${MY_P}" @@ -61,10 +64,6 @@ src_configure() { econf "${myeconfargs[@]}" } -src_compile() { - emake -j1 -} - src_install() { emake DESTDIR="${D}" install |