diff options
author | adamw <adamw@FreeBSD.org> | 2004-07-19 05:12:32 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2004-07-19 05:12:32 +0800 |
commit | 3714eb60501e8ee84b95b21016ab9dac5005d154 (patch) | |
tree | feeabffaa07b7b9be124a6b0fd906f2cdf1d4451 /textproc | |
parent | bd38be3cc0cff2805f85c2f0625197545efefcc8 (diff) | |
download | freebsd-ports-gnome-3714eb60501e8ee84b95b21016ab9dac5005d154.tar.gz freebsd-ports-gnome-3714eb60501e8ee84b95b21016ab9dac5005d154.tar.zst freebsd-ports-gnome-3714eb60501e8ee84b95b21016ab9dac5005d154.zip |
Move a questionable make-ism into a functioning sed-ism.
Submitted by: Rui Lopes
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/silvercity/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/textproc/silvercity/Makefile b/textproc/silvercity/Makefile index ac8603f349f7..44bc800c8e89 100644 --- a/textproc/silvercity/Makefile +++ b/textproc/silvercity/Makefile @@ -22,8 +22,6 @@ USE_REINPLACE= yes # convert scripts EOL from DOS to NIX post-extract: -.for i in ${WRKSRC}/PySilverCity/Scripts/*.py - @${REINPLACE_CMD} -e 's,
$$,,' ${WRKSRC}/${i} -.endfor + @${REINPLACE_CMD} -e 's,
$$,,' ${WRKSRC}/PySilverCity/Scripts/*.py .include <bsd.port.mk> |