diff options
author | Jeroen Roovers <jer@gentoo.org> | 2018-09-08 15:28:03 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2018-09-08 15:28:25 +0200 |
commit | 01e24f2cd0d3bea9dab9c6047648941d677dbcb6 (patch) | |
tree | 3c41378be132e988e43eb36d75f57752c599b1d0 /dev-libs/xxhash | |
parent | net-misc/youtube-dl: Old. (diff) | |
download | gentoo-01e24f2cd0d3bea9dab9c6047648941d677dbcb6.tar.gz gentoo-01e24f2cd0d3bea9dab9c6047648941d677dbcb6.tar.bz2 gentoo-01e24f2cd0d3bea9dab9c6047648941d677dbcb6.zip |
dev-libs/xxhash: Compile xxhash.o once
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Diffstat (limited to 'dev-libs/xxhash')
-rw-r--r-- | dev-libs/xxhash/files/xxhash-0.6.5-do-not-compile-xxhash.o-twice.patch | 11 | ||||
-rw-r--r-- | dev-libs/xxhash/xxhash-0.6.5.ebuild | 3 |
2 files changed, 14 insertions, 0 deletions
diff --git a/dev-libs/xxhash/files/xxhash-0.6.5-do-not-compile-xxhash.o-twice.patch b/dev-libs/xxhash/files/xxhash-0.6.5-do-not-compile-xxhash.o-twice.patch new file mode 100644 index 000000000000..dcbc8c32dec9 --- /dev/null +++ b/dev-libs/xxhash/files/xxhash-0.6.5-do-not-compile-xxhash.o-twice.patch @@ -0,0 +1,11 @@ +--- a/Makefile ++++ b/Makefile +@@ -82,7 +82,7 @@ + all: lib xxhsum xxhsum_inlinedXXH + + xxhsum32: CFLAGS += -m32 +-xxhsum xxhsum32: xxhash.c xxhsum.c ++xxhsum xxhsum32: xxhash.o xxhsum.c + $(CC) $(FLAGS) $^ -o $@$(EXT) + + .PHONY: xxhsum_and_links diff --git a/dev-libs/xxhash/xxhash-0.6.5.ebuild b/dev-libs/xxhash/xxhash-0.6.5.ebuild index f23c18c478a8..f8633569a91b 100644 --- a/dev-libs/xxhash/xxhash-0.6.5.ebuild +++ b/dev-libs/xxhash/xxhash-0.6.5.ebuild @@ -16,6 +16,9 @@ IUSE="static-libs" DEPEND="" S="${WORKDIR}/xxHash-${PV}" +PATCHES=( + "${FILESDIR}"/${PN}-0.6.5-do-not-compile-xxhash.o-twice.patch +) src_configure() { use hppa && replace-flags '-O*' '-O0' |