diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-05 00:41:28 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-05 00:41:28 +0000 |
commit | eea75a8553d43c10dc99b33348ee63b36692aec9 (patch) | |
tree | 1022450731670ee0b95dde1e886ca0a1de6dbea2 /mail/ftrack | |
parent | 9d2ba0bd5a771f5c2c9e5e49889f0f8374d685a3 (diff) | |
download | ports-eea75a8553d43c10dc99b33348ee63b36692aec9.tar.gz ports-eea75a8553d43c10dc99b33348ee63b36692aec9.zip |
Notes
Diffstat (limited to 'mail/ftrack')
-rw-r--r-- | mail/ftrack/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/ftrack/Makefile b/mail/ftrack/Makefile index 12f7857c9a5c..3463a4ffa2e5 100644 --- a/mail/ftrack/Makefile +++ b/mail/ftrack/Makefile @@ -27,7 +27,10 @@ pre-patch: s@../../src/@src/@g; s@g\+\+@${CC}@g; \ s@-L../smapi -lsmapibsd@-L${LOCALBASE}/lib -lsmapi@g" ${WRKSRC}/MakeFiles/FreeBSD/Makefile .for DIR in MakeFiles/FreeBSD src hpp doc/eng samples/tpl - ${REINPLACE_CMD} -e 's!\r!!' ${WRKSRC}/${DIR}/* + for FILE in ${WRKSRC}/${DIR}/*; do \ + ${TR} -d '\015' < $${FILE} > $${FILE}.new; \ + ${MV} $${FILE}.new $${FILE}; \ + done .endfor pre-configure: |