Style: remove redundant parentheses.

This commit is contained in:
Ruslan Ermilov 2007-05-21 09:01:23 +00:00
parent f3f68e9d08
commit dc9f26d3c3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=169822
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ all: objwarn
# Allow librararies to specify their own version map or have it
# automatically generated (see bsd.symver.mk above).
.if (${MK_SYMVER} == "yes") && !empty(VERSION_MAP)
.if ${MK_SYMVER} == "yes" && !empty(VERSION_MAP)
${SHLIB_NAME}: ${VERSION_MAP}
LDFLAGS+= -Wl,--version-script=${VERSION_MAP}
.endif

View File

@ -7,7 +7,7 @@ __<bsd.symver.mk>__:
# Generate the version map given the version definitions
# and symbol maps.
.if (${MK_SYMVER} == "yes") && !empty(VERSION_DEF) && !empty(SYMBOL_MAPS)
.if ${MK_SYMVER} == "yes" && !empty(VERSION_DEF) && !empty(SYMBOL_MAPS)
# Find the awk script that generates the version map.
VERSION_GEN?= version_gen.awk
VERSION_MAP?= Version.map