Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 293654 | Differences between
and this patch

Collapse All | Expand All

(-)aview-1.3.0.orig/asciiview (-1 / +2 lines)
Lines 59-64 Link Here
59
tmpdir=`mktemp -t -d`
59
tmpdir=`mktemp -t -d`
60
outfile=$tmpdir/aview.pgm
60
outfile=$tmpdir/aview.pgm
61
mkfifo $outfile
61
mkfifo $outfile
62
exec 3<&0
62
echo "$filenames" | while read name; do
63
echo "$filenames" | while read name; do
63
if test -r "$name" ; then
64
if test -r "$name" ; then
64
case "$name" in
65
case "$name" in
Lines 70-76 Link Here
70
  myconvert "$name" "$outfile" >"$outfile" &
71
  myconvert "$name" "$outfile" >"$outfile" &
71
  pid=$!
72
  pid=$!
72
  PATH="$PATH:."
73
  PATH="$PATH:."
73
  aview  $options $outfile
74
  aview  $options $outfile <&3
74
  kill $pid 2>/dev/null
75
  kill $pid 2>/dev/null
75
esac
76
esac
76
else
77
else

Return to bug 293654