oss...@gmail.com
unread,Nov 20, 2009, 7:36:49 AM11/20/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tmcode...@googlegroups.com
Author: richard
Date: Fri Nov 20 04:36:49 2009
New Revision: 303
Log:
update comments to reflect what really happens.... ready for merge...
Modified:
spine/branches/spine_2_2-devel/lib/Spine/Plugin/RPMPackageManager.pm
Modified: spine/branches/spine_2_2-devel/lib/Spine/Plugin/RPMPackageManager.pm
==============================================================================
--- spine/branches/spine_2_2-devel/lib/Spine/Plugin/RPMPackageManager.pm Fri Nov 20 04:31:46 2009 (r302)
+++ spine/branches/spine_2_2-devel/lib/Spine/Plugin/RPMPackageManager.pm Fri Nov 20 04:36:49 2009 (r303)
@@ -185,16 +185,9 @@
@cmdline = @{ +shift };
}
- # NOTE: there is a split in the bellow lines because of an
- # apt-get 'feature'.
- # - If you pass arguments to apt-get as a single
- # argv then open3 splits it and it works.
- # - If you split them all out it also works.
- # - If you do a mixture it apt-get gets very upset.
+
# NOTE: passing blank arguments causes strange apt-get errors
# like "E: Line 1 too long in source list" (it lies)
- # rpounder Tue Aug 25 2009
- #
my @fixed_cmdline;
foreach my $cmdpart (@cmdline) {
push (@fixed_cmdline, split(' ', $cmdpart)) unless ($cmdpart eq '');