summaryrefslogtreecommitdiff
path: root/secure
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2015-11-17 20:47:16 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2015-11-17 20:47:16 +0000
commitfa4593b5c75f50cc2737192e47c2bf1a70d73e47 (patch)
tree232ddda04f74debab92c4eb7407f57ae6335b138 /secure
parent3e8918911e5c71aca9310fa190a85c7351da31af (diff)
downloadsrc-test2-fa4593b5c75f50cc2737192e47c2bf1a70d73e47.tar.gz
src-test2-fa4593b5c75f50cc2737192e47c2bf1a70d73e47.zip
Notes
Diffstat (limited to 'secure')
-rw-r--r--secure/lib/libcrypto/Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc
index 0c6247f5bfd8..8f41603411b9 100644
--- a/secure/lib/libcrypto/Makefile.inc
+++ b/secure/lib/libcrypto/Makefile.inc
@@ -72,13 +72,13 @@ man-makefile-update:
${.CURDIR}/Makefile.man
for i in ${LCRYPTO_DOC}/${_docs}/*.pod; do \
fn=`basename $$i .pod`; \
- if ! echo ' ${_skip} ' | grep -q " $$fn "; then \
+ if ! echo '${_skip}' | grep -qw "$$fn"; then \
${ECHO} "MAN+= $$fn.${_sec}" >> ${.CURDIR}/Makefile.man; \
fi; \
done
for i in ${LCRYPTO_DOC}/${_docs}/*.pod; do \
fn=`basename $$i .pod`; \
- if ! echo ' ${_skip} ' | grep -q " $$fn "; then \
+ if ! echo '${_skip}' | grep -qw "$$fn"; then \
perl ${LCRYPTO_SRC}/util/extract-names.pl < $$i | \
awk "/^$$fn\$$/ { next; } \
{ print \"MLINKS+= $$fn.${_sec} \" \$$1 \".${_sec}\" }" >> \