diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-18 20:42:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-18 20:42:43 +0000 |
commit | a341ee3f79208a6100dd726de5a7a42a35e2ae0d (patch) | |
tree | a5537e2cfe5ed47438eef8fefef06aeefbb01cbe /utils | |
parent | b7686f8e2a61cf9a829943c41a545d6d23afde17 (diff) |
2002-08-18 Roland McGrath <roland@frob.com>
* fakeroot.sh: Dont use "exec" command, since the original script
does not and some users use sh syntax here and not just commands.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/fakeroot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fakeroot.sh b/utils/fakeroot.sh index cd0df7b0..1ace1cf7 100644 --- a/utils/fakeroot.sh +++ b/utils/fakeroot.sh @@ -59,5 +59,5 @@ fi # the shell running under fakeauth to chdir there inside the chroot world. # That shell then execs our arguments as a command line. exec /bin/settrans --chroot \ - /bin/fakeauth /bin/sh -c "cd `pwd`; exec $*" \ + /bin/fakeauth /bin/sh -c "cd `pwd`; $*" \ -- / /hurd/fakeroot |