diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 02:42:41 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 02:42:41 +0000 |
commit | 3262cce303b354dfda0c0b11bbbda803a827665b (patch) | |
tree | c032983554a8629dd6dfa9af9f4d687c43e5ac6f /lang/rexx-imc | |
parent | 50af3342991a28fc1e594857fcef03e5fdf80c19 (diff) |
expr -> ${EXPR}
mv -> ${MV}
rm -> ${RM}
tr -> ${TR}
Notes
Notes:
svn path=/head/; revision=21051
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 4fabe7179d6c..4310f7bc0b28 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 |