diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-07-18 17:48:29 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-07-18 17:48:29 +0000 |
commit | 03985c51e224656618592731485a88042586aa4a (patch) | |
tree | 2603641468cfb7c9aea89d94577fa0c99c05dc55 | |
parent | 888a65305af9764fc5ff4978ea8ffdf86fc71d3d (diff) |
lang/python37: Use ECHO_CMD instead of ECHO
-rw-r--r-- | lang/python37/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python37/Makefile b/lang/python37/Makefile index 00715d704b09..8909af0dd7ab 100644 --- a/lang/python37/Makefile +++ b/lang/python37/Makefile @@ -112,9 +112,9 @@ post-patch: @${REINPLACE_CMD} -e 's|uuid/uuid.h|ignore_&|' ${WRKSRC}/configure @${REINPLACE_CMD} -e '/find_library_file/ s|uuid|ignore_&|' ${WRKSRC}/setup.py # Apply DISABLED_EXTENSIONS - @${ECHO} '*disabled*' > ${WRKSRC}/Modules/Setup.local + @${ECHO_CMD} '*disabled*' > ${WRKSRC}/Modules/Setup.local . for _module in ${DISABLED_EXTENSIONS} - @${ECHO} ${_module} >> ${WRKSRC}/Modules/Setup.local + @${ECHO_CMD} ${_module} >> ${WRKSRC}/Modules/Setup.local . endfor post-install: |