Skip to content

Commit c37e7de

Browse files
committed
Merge branch 'master' into columnfamilies
Conflicts: db/db_impl.cc db/db_impl.h
2 parents 514e42c + 3c0dcf0 commit c37e7de

8 files changed

+505
-419
lines changed

Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ BENCHMARKS = db_bench_sqlite3 db_bench_tree_db table_reader_bench
9898

9999
# The library name is configurable since we are maintaining libraries of both
100100
# debug/release mode.
101-
LIBNAME = librocksdb
101+
ifeq ($(LIBNAME),)
102+
LIBNAME=librocksdb
103+
endif
102104
LIBRARY = ${LIBNAME}.a
103105
MEMENVLIBRARY = libmemenv.a
104106

build_tools/make_new_version.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function title() {
1616
echo -e "\033[1;32m$*\033[0m"
1717
}
1818

19-
usage="Create new rocksdb version and prepare it for the release process\n"
19+
usage="Create new RocksDB version and prepare it for the release process\n"
2020
usage+="USAGE: ./make_new_version.sh <version>"
2121

2222
# -- Pre-check
@@ -33,8 +33,8 @@ if [ $GIT_BRANCH != "master" ]; then
3333
fi
3434

3535
title "Adding new tag for this release ..."
36-
$TAG="$ROCKSDB_VERSION.fb"
37-
$GIT tag -a "$TAG" -m "Rocksdb $ROCKSDB_VERSION"
36+
TAG="$ROCKSDB_VERSION.fb"
37+
$GIT tag -a "$TAG" -m "RocksDB $ROCKSDB_VERSION"
3838

3939
# Setting up the proxy for remote repo access
4040
title "Pushing new tag to remote repo ..."

0 commit comments

Comments
 (0)