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

Collapse All | Expand All

(-)work.orig/xc/programs/Xserver/Xprint/etc/profile.d/xprint.csh (-1 / +1 lines)
Lines 10-16 Link Here
10
#
10
#
11
11
12
if ( -f /etc/init.d/xprint ) then
12
if ( -f /etc/init.d/xprint ) then
13
  setenv XPSERVERLIST "`/bin/sh /etc/init.d/xprint get_xpserverlist`"
13
  setenv XPSERVERLIST "`/bin/sh -c 'source /etc/init.d/xprint ; get_xpserverlist'`"
14
endif
14
endif
15
15
16
# /etc/profile.d/xprint.csh ends here.
16
# /etc/profile.d/xprint.csh ends here.
(-)work.orig/xc/programs/Xserver/Xprint/etc/profile.d/xprint.sh (-1 / +1 lines)
Lines 9-15 Link Here
9
#
9
#
10
10
11
if [ -f "/etc/init.d/xprint" ] ; then
11
if [ -f "/etc/init.d/xprint" ] ; then
12
  XPSERVERLIST="`/bin/sh /etc/init.d/xprint get_xpserverlist`"
12
  XPSERVERLIST="`source /etc/init.d/xprint ; get_xpserverlist`"
13
  export XPSERVERLIST
13
  export XPSERVERLIST
14
fi
14
fi
15
15
(-)work.orig/xc/programs/Xserver/Xprint/etc/Xsession.d/cde_xsessiond_xprint.sh (-1 / +1 lines)
Lines 23-29 Link Here
23
#
23
#
24
24
25
if [ -f "/etc/init.d/xprint" ] ; then
25
if [ -f "/etc/init.d/xprint" ] ; then
26
  XPSERVERLIST="`/bin/sh /etc/init.d/xprint get_xpserverlist`"
26
  XPSERVERLIST="`source /etc/init.d/xprint ; get_xpserverlist`"
27
  export XPSERVERLIST
27
  export XPSERVERLIST
28
fi
28
fi
29
29

Return to bug 134941