From 16c6de3264473522a724b4bf67b5ab5231fbb2e1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Fonzo?= Date: Mon, 31 Aug 2020 21:20:29 -0300 Subject: [PATCH] recipes: libs/fuse2: Minor update on the rc script MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Matías Fonzo --- archive/fuse/rc.fuse | 4 ++-- recipes/libs/fuse2/recipe | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/archive/fuse/rc.fuse b/archive/fuse/rc.fuse index 02845172..23a708eb 100644 --- a/archive/fuse/rc.fuse +++ b/archive/fuse/rc.fuse @@ -2,7 +2,7 @@ # # Load the fuse module (if exists) and mount the fuse control file system # -# Copyright (c) 2019 Matias Fonzo, . +# Copyright (c) 2019-2020 Matias Fonzo, . # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,7 +19,7 @@ PROGRAM="${0##*/}" # Sanity check -if ! type fusermount > /dev/null 2>&1 +if ! command -v fusermount > /dev/null then echo "${0}: Error: fusermount(1) is not available." 1>&2 exit 127; diff --git a/recipes/libs/fuse2/recipe b/recipes/libs/fuse2/recipe index 4957abda..72b4836e 100644 --- a/recipes/libs/fuse2/recipe +++ b/recipes/libs/fuse2/recipe @@ -1,6 +1,6 @@ # Build recipe for fuse (version 2). # -# Copyright (c) 2019 Matias Fonzo, . +# Copyright (c) 2019-2020 Matias Fonzo, . # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,7 +16,7 @@ program=fuse version=2.9.9 -release=2 +release=3 # Set custom package name pkgname=fuse2 -- 2.11.4.GIT