retitle 639770 apt-move: fails to open fifo-file and hangs tags 639770 + unreproducible retitle 398297 apt-move: wrong version selected if containing tilde '~' merge 398297 539524 retitle 692342 apt-move uses obsolete implicit split functionality tags 692342 + pending, patch thanks Seems this bug (692342) depends on the version of perl. According to the proposed patch in bug 398297 [1], the implicit use of split has been removed in version 5.12. I am preparing an upload for this bug with the attached patch. [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=398297#20
Description: The use of implicit split call has been removed from perl
 in version 5.12 as it had been deprecated for 15 years
Author: Paul Gevers <elbrus@debian.org>
Bug-Debian: http://bugs.debian.org/692342
Forwarded: no
--- a/move3
+++ b/move3
@@ -42,7 +42,7 @@
 }
 
 while (<>) {
-	split;
+	@_=split;
 
 	if ($_[0] eq "D") {
 		if (fileno(MKDIR) == undef) {
Attachment:
signature.asc
Description: OpenPGP digital signature