diff options
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rwxr-xr-x | tools/drakx-in-chroot | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 9d4ff3f56..dd11abbec 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- drakx-in-chroot: + o enable to control strace behaviour + Version 17.26 - 3 April 2016 - add minimal CSD support (mga#17702) 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"; } |