mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
6cf0967631
ap/ghostscript-9.50-x86_64-1.txz: Upgraded. d/icecream-1.3-x86_64-2.txz: Rebuilt. Have the profile scripts just check for -x /etc/rc.d/rc.iceccd, since pgrep with --ns $$ isn't working for non-root users. Thanks to Leopold E. Midha. d/python-pip-19.3-x86_64-1.txz: Upgraded. n/bluez-5.51-x86_64-2.txz: Rebuilt. Fixed path to obexd in org.bluez.obex.service. Thanks to Jean-Philippe Guillemin. x/xf86-video-ati-19.1.0-x86_64-1.txz: Upgraded.
7 lines
211 B
Tcsh
7 lines
211 B
Tcsh
#!/bin/csh
|
|
# Only add the icecream directory to the PATH if we see that iceccd is
|
|
# supposed to be running on this machine:
|
|
|
|
if ( -x /etc/rc.d/rc.iceccd ) then
|
|
setenv PATH /usr/libexec/icecc/bin:${PATH}
|
|
endif
|