diff options
author | jkim <jkim@FreeBSD.org> | 2015-11-17 20:47:16 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2015-11-17 20:47:16 +0000 |
commit | 195994e5fb55d95f6694729e2f17cee7e2313e3e (patch) | |
tree | 232ddda04f74debab92c4eb7407f57ae6335b138 /secure | |
parent | 8f5847a583814ee0e65a944b010d97c827ab5dc2 (diff) | |
download | FreeBSD-src-195994e5fb55d95f6694729e2f17cee7e2313e3e.zip FreeBSD-src-195994e5fb55d95f6694729e2f17cee7e2313e3e.tar.gz |
Simplify man-makefile-update target.
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libcrypto/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc index 0c6247f..8f41603 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}\" }" >> \ |