diff options
Diffstat (limited to 'tools/drakx-in-chroot')
-rw-r--r-- | 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 fbda29eb9..3d05ddf22 100644 --- a/tools/drakx-in-chroot +++ b/tools/drakx-in-chroot @@ -149,5 +149,5 @@ sub copy_auto_install_files() { } @ARGV; #- contatenate auto_install and defcfg files into a new auto_install file in install root my @auto_inst = grep { -f $_ } $auto_install, $defcfg; - output($SLASH_LOCATION . $AUTO_INSTALL_ROOTED, cat_(@auto_inst)) if @auto_inst; + output($SLASH_LOCATION . $AUTO_INSTALL_ROOTED, map { cat_($_) } @auto_inst) if @auto_inst; } |