diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-05 11:29:13 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-05 11:29:13 +0000 |
commit | 7243483e91ff1a935ffe9d464ac847e76b23e62d (patch) | |
tree | bf2fe256157fe8fb6c5e37db5fa4e40b6f495e89 | |
parent | 2077562604151073834e0f0a71535427c5e1877e (diff) | |
download | FreeBSD-ports-7243483e91ff1a935ffe9d464ac847e76b23e62d.zip FreeBSD-ports-7243483e91ff1a935ffe9d464ac847e76b23e62d.tar.gz |
Generate voices.conf more efficiently.
-rw-r--r-- | audio/mbrola/scripts/configure | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/mbrola/scripts/configure b/audio/mbrola/scripts/configure index 53a5190..964a1d8 100644 --- a/audio/mbrola/scripts/configure +++ b/audio/mbrola/scripts/configure @@ -91,8 +91,7 @@ case $retval in ;; esac -echo $choice | sed -e 's:\": :g' | fold -s -w 14 | tr -d \ \ - | sort -u | grep zip > ${WRKDIR}/voices.conf +echo $choice | tr ' ' '\012' | tr -d \" > ${WRKDIR}/voices.conf fi cut -c1-3 < ${WRKDIR}/voices.conf > ${WRKDIR}/fetchdirs.conf |