[yast-commit] r40960 - in /trunk/installation: VERSION package/yast2-installation.changes src/modules/SystemFilesCopy.ycp
Author: locilka Date: Tue Sep 18 19:52:38 2007 New Revision: 40960 URL: http://svn.opensuse.org/viewcvs/yast?rev=40960&view=rev Log: - Fixed tar syntax: --ignore-failed-read param. position (#326055). - 2.15.50 Modified: trunk/installation/VERSION trunk/installation/package/yast2-installation.changes trunk/installation/src/modules/SystemFilesCopy.ycp Modified: trunk/installation/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/VERSION?rev=40960&r1=40959&r2=40960&view=diff ============================================================================== --- trunk/installation/VERSION (original) +++ trunk/installation/VERSION Tue Sep 18 19:52:38 2007 @@ -1 +1 @@ -2.15.49 +2.15.50 Modified: trunk/installation/package/yast2-installation.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/package/yast2-installation.changes?rev=40960&r1=40959&r2=40960&view=diff ============================================================================== --- trunk/installation/package/yast2-installation.changes (original) +++ trunk/installation/package/yast2-installation.changes Tue Sep 18 19:52:38 2007 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Tue Sep 18 19:50:52 CEST 2007 - locilka@suse.cz + +- Fixed tar syntax: --ignore-failed-read param. position (#326055). +- 2.15.50 + +------------------------------------------------------------------- Thu Sep 13 16:18:30 CEST 2007 - locilka@suse.cz - Fixed inst_upgrade_urls to re-register sources with their Modified: trunk/installation/src/modules/SystemFilesCopy.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/src/modules/SystemFilesCopy.ycp?rev=40960&r1=40959&r2=40960&view=diff ============================================================================== --- trunk/installation/src/modules/SystemFilesCopy.ycp (original) +++ trunk/installation/src/modules/SystemFilesCopy.ycp Tue Sep 18 19:52:38 2007 @@ -156,7 +156,9 @@ // archive files were already quoted string command = sformat ( // 'ignore failed read' is for optional files - "cd '%1'; tar -zcvf --ignore-failed-read '%2' %3", + // but needs to be entered after the archive name + // bugzilla #326055 + "cd '%1'; tar -zcvf '%2' --ignore-failed-read %3", tmp_mount_directory, String::Quote(archive_name), archive_files ); map cmd_run = (map) SCR::Execute(.target.bash_output, command); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
locilka@svn.opensuse.org