diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-28 02:42:41 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-28 02:42:41 +0000 |
commit | 54a9de1bc46c49543c5fc07b6128d0f18b5c4023 (patch) | |
tree | 63ca8b1b366b8d64e4d645959252f91f9d55ab5f /lang/rexx-imc | |
parent | 929e461fb30940a507219f54c08472fb7347d37a (diff) | |
download | FreeBSD-ports-54a9de1bc46c49543c5fc07b6128d0f18b5c4023.zip FreeBSD-ports-54a9de1bc46c49543c5fc07b6128d0f18b5c4023.tar.gz |
expr -> ${EXPR}
mv -> ${MV}
rm -> ${RM}
tr -> ${TR}
Diffstat (limited to 'lang/rexx-imc')
-rw-r--r-- | lang/rexx-imc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/rexx-imc/Makefile b/lang/rexx-imc/Makefile index 4fabe71..4310f7b 100644 --- a/lang/rexx-imc/Makefile +++ b/lang/rexx-imc/Makefile @@ -25,7 +25,7 @@ UGLY_PATCH= rexx.c rxfn.c util.c post-patch: .for c in ${UGLY_PATCH} @${ECHO_MSG} "Changing struct fileinfo member errno to ferrno in ${c}" - @mv ${WRKSRC}/${c} ${WRKSRC}/${c}.old + @${MV} ${WRKSRC}/${c} ${WRKSRC}/${c}.old @${SED} 's/->errno/->ferrno/g;' ${WRKSRC}/${c}.old > ${WRKSRC}/${c} @${RM} ${WRKSRC}/${c}.old .endfor |