diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-04-04 08:33:50 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-04-04 08:34:05 +0200 |
commit | 35cca5121af72afcf5d93304f5cd9861542c4162 (patch) | |
tree | 1f9458e10e9eee1637cdfdecc2c497c13d438906 /tools | |
parent | 8d4a16f8aa0e7293207cbb65e18aac573a25419f (diff) | |
download | drakx-35cca5121af72afcf5d93304f5cd9861542c4162.tar drakx-35cca5121af72afcf5d93304f5cd9861542c4162.tar.gz drakx-35cca5121af72afcf5d93304f5cd9861542c4162.tar.bz2 drakx-35cca5121af72afcf5d93304f5cd9861542c4162.tar.xz drakx-35cca5121af72afcf5d93304f5cd9861542c4162.zip |
enable to control strace behaviour
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/drakx-in-chroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/drakx-in-chroot b/tools/drakx-in-chroot index 680db41ed..d0672617d 100755 --- a/tools/drakx-in-chroot +++ b/tools/drakx-in-chroot @@ -42,7 +42,7 @@ foreach (@ARGV) { } elsif (/--gdb/) { $wrapper = "gdb -q --args"; } elsif (/--strace/) { - $wrapper = "strace -e file"; + $wrapper = "strace -e file $ENV{STRACE_OPTIONS}"; } elsif (/--depth=(.*)/) { $resolution .= "x$1"; } |