# HG changeset patch # User Carlo de Falco # Date 1331928889 -3600 # Node ID 045a5b85495d0ba5fec497f5c6b0305d94dd50ed # Parent d2c095e45196cf122bbd5667241ce2c83eaae805 maint: Remove redundant private function from the package manager. * scripts/pkg/private/issuperuser.m: remove file. * scripts/pkg/pkg.m: remove call to issuperuser. * scripts/pkg/private/getarchprefix.m: remove call to issuperuser. * scripts/pkg/private/create_pkgaddel.m: remove call to issuperuser. diff -r d2c095e45196 -r 045a5b85495d scripts/pkg/pkg.m --- a/scripts/pkg/pkg.m Fri Mar 16 18:55:09 2012 +0100 +++ b/scripts/pkg/pkg.m Fri Mar 16 21:14:49 2012 +0100 @@ -273,7 +273,9 @@ mlock (); - global_install = issuperuser (); + ## If user is superuser set global_istall to true + ## FIXME: is it OK to set this always true on windows? + global_install = ((ispc () && ! isunix ()) || (geteuid () == 0)); if (prefix == -1) if (global_install) diff -r d2c095e45196 -r 045a5b85495d scripts/pkg/private/getarchprefix.m --- a/scripts/pkg/private/getarchprefix.m Fri Mar 16 18:55:09 2012 +0100 +++ b/scripts/pkg/private/getarchprefix.m Fri Mar 16 21:14:49 2012 +0100 @@ -24,9 +24,9 @@ ## @end deftypefn function archprefix = getarchprefix (desc, global_install) - if ((nargin == 2 && global_install) || (nargin < 2 && issuperuser ())) + if (global_install) archprefix = fullfile (octave_config_info ("libdir"), "octave", - "packages", cstrcat(desc.name, "-", desc.version)); + "packages", cstrcat (desc.name, "-", desc.version)); else archprefix = desc.dir; endif diff -r d2c095e45196 -r 045a5b85495d scripts/pkg/private/issuperuser.m --- a/scripts/pkg/private/issuperuser.m Fri Mar 16 18:55:09 2012 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -## Copyright (C) 2005-2012 S�ren Hauberg -## Copyright (C) 2010 VZLU Prague, a.s. -## -## This file is part of Octave. -## -## Octave is free software; you can redistribute it and/or modify it -## under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 3 of the License, or (at -## your option) any later version. -## -## Octave is distributed in the hope that it will be useful, but -## WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -## General Public License for more details. -## -## You should have received a copy of the GNU General Public License -## along with Octave; see the file COPYING. If not, see -## . - -## -*- texinfo -*- -## @deftypefn {Function File} {@var{s} =} issuperuser () -## Undocumented internal function. -## @end deftypefn - -function s = issuperuser () - if ((ispc () && ! isunix ()) || (geteuid() == 0)) - s = true; - else - s = false; - endif -endfunction -