Skip to content

Commit 00bc979

Browse files
committed
common: remove remaining references to librpmem library
Signed-off-by: Tomasz Gromadzki <[email protected]>
1 parent 3c623ae commit 00bc979

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/Makefile.inc

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: BSD-3-Clause
2-
# Copyright 2014-2022, Intel Corporation
2+
# Copyright 2014-2023, Intel Corporation
33
#
44
# src/Makefile.inc -- common Makefile rules for PMDK
55
#
@@ -64,11 +64,6 @@ ifeq ($(WSTRINGOP_TRUNCATION_AVAILABLE), y)
6464
DEFAULT_CFLAGS += -DSTRINGOP_TRUNCATION_SUPPORTED
6565
endif
6666

67-
# Librpmem is deprecated.
68-
# This flag allows to build tests, examples and benchmarks
69-
# using rpmem despite the deprecated state.
70-
DEFAULT_CFLAGS += -Wno-deprecated-declarations
71-
7267
ifeq ($(DEBUG),1)
7368
# Undefine _FORTIFY_SOURCE in case it's set in system-default or
7469
# user-defined CFLAGS as it conflicts with -O0.

utils/check-manpages

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# SPDX-License-Identifier: BSD-3-Clause
3-
# Copyright 2019-2020, Intel Corporation
3+
# Copyright 2019-2023, Intel Corporation
44

55
# check-manpages -- a tool to test against some manpage errors
66

@@ -9,8 +9,5 @@ MANS="$*"
99
[ -n "$MANS" ] || { echo >&2 "No man pages given, and none found in doc/"; exit 1;}
1010

1111
for page in $MANS;do
12-
if [ "${page/rpmem/}" != "$page" ] && [ "$BUILD_RPMEM" != "y" ]; then
13-
continue
14-
fi
1512
echo $page
1613
done | xargs -P `nproc` -n1 -- utils/check-manpage

0 commit comments

Comments
 (0)