diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2000-01-17 16:58:46 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2000-01-17 16:58:46 +0000 |
commit | 8ae644c91b020ed6a8d1b45f7862a318351318fe (patch) | |
tree | 7c7b595d8d28187ddc85af1f0c6a65df679d6f00 /x11/XFree86-4 | |
parent | 6ab0fab64d3bf55d7dbac9c412577fa09f762902 (diff) | |
download | ports-8ae644c91b020ed6a8d1b45f7862a318351318fe.tar.gz ports-8ae644c91b020ed6a8d1b45f7862a318351318fe.zip |
When copying Wraphelp.c use tr -d '\r' instead of cp. Too many people
get it transfered in ASCII mode.
Notes
Notes:
svn path=/head/; revision=24797
Diffstat (limited to 'x11/XFree86-4')
-rw-r--r-- | x11/XFree86-4/scripts/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/XFree86-4/scripts/configure b/x11/XFree86-4/scripts/configure index 5dcca08200f0..f5f094c3a59f 100644 --- a/x11/XFree86-4/scripts/configure +++ b/x11/XFree86-4/scripts/configure @@ -371,7 +371,7 @@ echo configure if [ X$cpwh != XNO ]; then - cp $cpwh $WH + tr -d '\r' < $cpwh > $WH fi cat $F >> $WRKDIR/xc/config/cf/xf86site.def |