Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 66370
Collapse All | Expand All

(-)netatalk-1.6.4.orig/etc/psf/etc2ps.sh (-3 / +4 lines)
Lines 26-34 Link Here
26
#
26
#
27
df*)
27
df*)
28
    if [ -x "$DVIPS" ]; then
28
    if [ -x "$DVIPS" ]; then
29
	cat > /tmp/psfilter.$$
29
	TEMPFILE=`mktemp -t psfilter.XXXXXX` || exit 1
30
	$DVIPS $DVIPSARGS < /tmp/psfilter.$$
30
	cat > $TEMPFILE
31
	rm -f /tmp/psfilter.$$
31
	$DVIPS $DVIPSARGS < $TEMPFILE
32
	rm -f $TEMPFILE
32
    else
33
    else
33
	echo "$0: filter dvips uninstalled" 1>&2
34
	echo "$0: filter dvips uninstalled" 1>&2
34
	exit 2
35
	exit 2

Return to bug 66370