Style: remove redundant parentheses.
This commit is contained in:
parent
f3f68e9d08
commit
dc9f26d3c3
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user