diff options
author | vd <vd@FreeBSD.org> | 2007-03-29 04:39:18 +0800 |
---|---|---|
committer | vd <vd@FreeBSD.org> | 2007-03-29 04:39:18 +0800 |
commit | af00bc3bbc0bc2247f5fa04daccc170ccdf97e5a (patch) | |
tree | d26f47087a886153d457281a442a8de0897bf574 /Tools/scripts | |
parent | dcff8fee3a945344b6ddd13f955452e8a5de8588 (diff) | |
download | freebsd-ports-gnome-af00bc3bbc0bc2247f5fa04daccc170ccdf97e5a.tar.gz freebsd-ports-gnome-af00bc3bbc0bc2247f5fa04daccc170ccdf97e5a.tar.zst freebsd-ports-gnome-af00bc3bbc0bc2247f5fa04daccc170ccdf97e5a.zip |
Use echo instead of printf because external commands cannot be executed
with very long arguments (>400000 characters).
The problem reveals for example if
/usr/ports/Tools/scripts/rmport -d print/ghostscript-gnu
is executed - it does
printf "%s\n" "... 451109 chars ..."
Spotted by: rafan
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/rmport | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/scripts/rmport b/Tools/scripts/rmport index e57cd271f0c0..4dc26ac8146e 100755 --- a/Tools/scripts/rmport +++ b/Tools/scripts/rmport @@ -155,7 +155,7 @@ check_dep_core() deps=`grep -E "${pkgname}" ${INDEX} |grep -vE "^(${rmpkgs})" || :` if [ -n "${deps}" ] ; then log "${catport}: some port(s) depend on ${pkgname}:" - printf "%s\n" "${deps}" >&2 + echo "${deps}" >&2 err=1 fi @@ -170,7 +170,7 @@ check_dep_core() echo >&2 fi log "${catport}: some Makefiles mention ${portdir_grep}:" - printf "%s\n" "${r}" >&2 + echo "${r}" >&2 err=1 fi @@ -194,7 +194,7 @@ check_dep() break fi - printf "%s" "${res}" |${PAGER:-less} + echo "${res}" |${PAGER:-less} if [ ${persist} -eq 0 ] ; then break |