From e6e505a4d922ad63ff141b419d8e8aefdb852746 Mon Sep 17 00:00:00 2001 From: Igor Canadi Date: Wed, 16 Dec 2015 17:04:46 +0100 Subject: [PATCH] Fix examples Summary: For some reason `make librocksdb.a` is not valid anymore. Replace with `make static_lib` Test Plan: cd examples/; make all; Reviewers: sdong Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D52017 --- examples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index 5bf0577ff..087c11961 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -35,4 +35,4 @@ clean: rm -rf ./simple_example ./column_families_example ./compact_files_example ./compaction_filter_example ./c_simple_example c_simple_example.o ./optimistic_transaction_example ./transaction_example librocksdb: - cd .. && $(MAKE) librocksdb.a + cd .. && $(MAKE) static_lib