mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
4fc798c4ca
a/tcsh-6.22.02-x86_64-1.txz: Upgraded. ap/vim-8.1.2391-x86_64-1.txz: Upgraded. l/fuse3-3.8.0-x86_64-2.txz: Rebuilt. rc.fuse3: Don't source /lib/lsb/init-functions unless it exists. NOTE: FUSE seems to work fine without starting rc.fuse3, which it why it isn't actually called from anywhere during system startup. n/iw-5.4-x86_64-1.txz: Upgraded. n/php-7.4.0-x86_64-2.txz: Rebuilt. Rebuilt using --enable-gd=shared and --with-zip=shared. Thanks to Matteo Bernardini. xap/gv-3.7.4-x86_64-3.txz: Rebuilt. Patched to fix save/print features when used with the latest ghostscript. Added --enable-international build option. Fixed broken whitespace in the bounding-box patch. Thanks to Xsane. xap/vim-gvim-8.1.2391-x86_64-1.txz: Upgraded.
13 lines
365 B
Diff
13 lines
365 B
Diff
--- ./util/init_script.orig 2019-11-03 03:53:39.000000000 -0600
|
|
+++ ./util/init_script 2019-12-05 12:06:09.156052064 -0600
|
|
@@ -20,7 +20,9 @@
|
|
which fusermount3 &>/dev/null || exit 5
|
|
|
|
# Define LSB log_* functions.
|
|
-. /lib/lsb/init-functions
|
|
+if [ -r /lib/lsb/init-functions ]; then
|
|
+ . /lib/lsb/init-functions
|
|
+fi
|
|
|
|
case "$1" in
|
|
start|restart|force-reload)
|