mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Reported-by: Agostino Sarubbo Closes: https://bugs.gentoo.org/721238 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
12 lines
492 B
Diff
12 lines
492 B
Diff
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -97,7 +97,7 @@ $(BUILD)/$(SO_VERSIONED): $(BUILD)/murmurhash2.o $(BUILD)/bloom.o
|
|
rm -f libbloom.$(SO) && ln -s $(BLOOM_SONAME) libbloom.$(SO))
|
|
|
|
$(BUILD)/libbloom.a: $(BUILD)/murmurhash2.o $(BUILD)/bloom.o
|
|
- (cd $(BUILD) && ar rcs libbloom.a bloom.o murmurhash2.o)
|
|
+ (cd $(BUILD) && $(AR) rcs libbloom.a bloom.o murmurhash2.o)
|
|
|
|
$(BUILD)/test-libbloom: $(TESTDIR)/test.c $(BUILD)/$(SO_VERSIONED)
|
|
$(COM) -I$(TOP) -c $(TESTDIR)/test.c -o $(BUILD)/test.o
|