diff --git a/AUTHORS b/AUTHORS index 8d87c6215470..e94e78c81e3b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -444,6 +444,7 @@ François Désarménien François Perrad Frederic Briere Fréderic Chauveau +Frosku Fyodor Krasnov G. Del Merritt Gabe Schaffer diff --git a/dist/PathTools/Cwd.pm b/dist/PathTools/Cwd.pm index a5f86a411b67..c1ec504375b5 100644 --- a/dist/PathTools/Cwd.pm +++ b/dist/PathTools/Cwd.pm @@ -155,6 +155,8 @@ if($^O ne 'MSWin32') { foreach my $try ('/bin/pwd', '/usr/bin/pwd', '/QOpenSys/bin/pwd', # OS/400 PASE. + '/run/current-system/profile/bin/pwd', # GUIX + '/run/current-system/sw/bin/pwd' # NixOS ) { if( -x $try ) { $pwd_cmd = $try;