-
Notifications
You must be signed in to change notification settings - Fork 7
/
compile.log
2581 lines (2569 loc) · 265 KB
/
compile.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/home/yaroslav/bin:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/yaroslav/bin:/home/yaroslav/nativeclient/depot_tools:/home/yaroslav/nacl_sdk/pepper_23/toolchain/linux_x86_glibc/bin
checking for --enable-universalsdk... no
checking for --with-universal-archs... 32-bit
checking MACHDEP... linux2
checking machine type as reported by uname -m... x86_64
checking for --without-gcc... no
checking for x86_64-nacl-gcc... x86_64-nacl-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether x86_64-nacl-gcc accepts -g... yes
checking for x86_64-nacl-gcc option to accept ISO C89... none needed
checking for --with-cxx-main=<compiler>... no
checking for -Wl,--no-as-needed... yes
checking how to run the C preprocessor... x86_64-nacl-gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for --with-suffix...
checking for case-insensitive build directory... no
checking LIBRARY... libpython$(VERSION)$(ABIFLAGS).a
checking LINKCC... $(PURIFY) $(MAINCC)
checking for GNU ld... yes
checking for inline... inline
checking for --enable-shared... no
checking for --enable-profiling...
checking LDLIBRARY... libpython$(VERSION)$(ABIFLAGS).a
checking for x86_64-nacl-ranlib... x86_64-nacl-ranlib
checking for ar... x86_64-nacl-ar
checking for svnversion... found
checking for python... found
checking for a BSD-compatible install... /usr/bin/install -c
checking for --with-pydebug... no
checking whether x86_64-nacl-gcc accepts and needs -fno-strict-aliasing... no
checking whether gcc supports ParseTuple __format__... no
checking whether pthreads are available without options... no
checking whether x86_64-nacl-gcc accepts -Kpthread... no
checking whether x86_64-nacl-gcc accepts -Kthread... no
checking whether x86_64-nacl-gcc accepts -pthread... no
checking whether x86_64-naclg++ also accepts flags for thread support... no
checking for ANSI C header files... (cached) yes
checking asm/types.h usability... yes
checking asm/types.h presence... yes
checking for asm/types.h... yes
checking conio.h usability... no
checking conio.h presence... no
checking for conio.h... no
checking curses.h usability... no
checking curses.h presence... no
checking for curses.h... no
checking direct.h usability... no
checking direct.h presence... no
checking for direct.h... no
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking ncurses.h usability... no
checking ncurses.h presence... no
checking for ncurses.h... no
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking shadow.h usability... yes
checking shadow.h presence... yes
checking for shadow.h... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for stdint.h... (cached) yes
checking stropts.h usability... yes
checking stropts.h presence... yes
checking for stropts.h... yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking thread.h usability... no
checking thread.h presence... no
checking for thread.h... no
checking for unistd.h... (cached) yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking sys/audioio.h usability... no
checking sys/audioio.h presence... no
checking for sys/audioio.h... no
checking sys/bsdtty.h usability... no
checking sys/bsdtty.h presence... no
checking for sys/bsdtty.h... no
checking sys/epoll.h usability... yes
checking sys/epoll.h presence... yes
checking for sys/epoll.h... yes
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking sys/lock.h usability... no
checking sys/lock.h presence... no
checking for sys/lock.h... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/modem.h usability... no
checking sys/modem.h presence... no
checking for sys/modem.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking for sys/stat.h... (cached) yes
checking sys/termio.h usability... no
checking sys/termio.h presence... no
checking for sys/termio.h... no
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking for sys/types.h... (cached) yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking pty.h usability... yes
checking pty.h presence... yes
checking for pty.h... yes
checking libutil.h usability... no
checking libutil.h presence... no
checking for libutil.h... no
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking netpacket/packet.h usability... yes
checking netpacket/packet.h presence... yes
checking for netpacket/packet.h... yes
checking sysexits.h usability... yes
checking sysexits.h presence... yes
checking for sysexits.h... yes
checking bluetooth.h usability... no
checking bluetooth.h presence... no
checking for bluetooth.h... no
checking bluetooth/bluetooth.h usability... no
checking bluetooth/bluetooth.h presence... no
checking for bluetooth/bluetooth.h... no
checking linux/tipc.h usability... no
checking linux/tipc.h presence... no
checking for linux/tipc.h... no
checking spawn.h usability... yes
checking spawn.h presence... yes
checking for spawn.h... yes
checking util.h usability... no
checking util.h presence... no
checking for util.h... no
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking whether sys/types.h defines makedev... yes
checking for term.h... no
checking for linux/netlink.h... yes
checking for clock_t in time.h... yes
checking for makedev... yes
checking Solaris LFS bug... no
checking for mode_t... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking for uid_t in sys/types.h... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for ssize_t... yes
checking size of int... 4
checking size of long... 4
checking size of void *... 4
checking size of short... 2
checking size of float... 4
checking size of double... 8
checking size of fpos_t... 16
checking size of size_t... 4
checking size of pid_t... 4
checking for long long support... yes
checking size of long long... 8
checking for long double support... yes
checking size of long double... 8
checking for _Bool support... yes
checking size of _Bool... 1
checking for uintptr_t... yes
checking size of uintptr_t... 4
checking size of off_t... 8
checking whether to enable large file support... yes
checking size of time_t... 8
checking for pthread_t... yes
checking size of pthread_t... 4
checking for --enable-framework... no
checking for dyld... no
checking LDSHARED... $(CC) -shared
checking CCSHARED... -fPIC
checking LINKFORSHARED... -T /home/yaroslav/nacl_sdk/pepper_23/toolchain/linux_x86_glibc/x86_64-nacl/lib64/ldscripts/elf64_nacl.x.static -melf64_nacl -m64 -L/home/yaroslav/git/zrt/lib -lzrt -lfs -lstdc++ -lzglibc
checking CFLAGSFORSHARED...
checking SHLIBS... $(LIBS)
checking for dlopen in -ldl... yes
checking for shl_load in -ldld... no
checking for textdomain in -lintl... no
checking for t_open in -lnsl... no
checking for socket in -lsocket... no
checking for --with-libs... no
checking for x86_64-nacl-pkg-config... no
checking for pkg-config... /usr/bin/pkg-config
checking for --with-system-expat... no
checking for --with-system-ffi... no
checking for --enable-loadable-sqlite-extensions... no
checking for --with-dbmliborder...
checking for --with-signal-module... yes
checking for --with-dec-threads... no
checking for --with-threads... no
checking if --enable-ipv6 is specified... no
checking for OSX 10.5 SDK or later... no
checking for --with-doc-strings... yes
checking for --with-tsc... no
checking for --with-pymalloc... yes
checking for --with-valgrind... no
checking for dlopen... yes
checking DYNLOADFILE... dynload_shlib.o
checking MACHDEP_OBJS... MACHDEP_OBJS
checking for alarm... no
checking for accept4... no
checking for setitimer... yes
checking for getitimer... yes
checking for bind_textdomain_codeset... yes
checking for chown... yes
checking for clock... yes
checking for confstr... yes
checking for ctermid... yes
checking for execv... yes
checking for fchmod... yes
checking for fchown... yes
checking for fork... no
checking for fpathconf... yes
checking for ftime... yes
checking for ftruncate... no
checking for gai_strerror... yes
checking for getgroups... yes
checking for getlogin... yes
checking for getloadavg... yes
checking for getpeername... yes
checking for getpgid... yes
checking for getpid... no
checking for getpriority... yes
checking for getresuid... yes
checking for getresgid... yes
checking for getpwent... yes
checking for getspnam... yes
checking for getspent... yes
checking for getsid... yes
checking for getwd... yes
checking for initgroups... yes
checking for kill... no
checking for killpg... yes
checking for lchmod... no
checking for lchown... yes
checking for lstat... yes
checking for mbrtowc... yes
checking for mkfifo... yes
checking for mknod... yes
checking for mktime... yes
checking for mremap... yes
checking for nice... yes
checking for pathconf... yes
checking for pause... yes
checking for plock... no
checking for poll... yes
checking for pthread_init... no
checking for putenv... yes
checking for readlink... yes
checking for realpath... yes
checking for select... yes
checking for sem_open... no
checking for sem_timedwait... no
checking for sem_getvalue... no
checking for sem_unlink... no
checking for setegid... yes
checking for seteuid... yes
checking for setgid... yes
checking for setlocale... yes
checking for setregid... yes
checking for setreuid... yes
checking for setresuid... yes
checking for setresgid... yes
checking for setsid... yes
checking for setpgid... yes
checking for setpgrp... yes
checking for setuid... yes
checking for setvbuf... yes
checking for sigaction... no
checking for siginterrupt... yes
checking for sigrelse... yes
checking for snprintf... yes
checking for strftime... yes
checking for strlcpy... no
checking for sysconf... yes
checking for tcgetpgrp... yes
checking for tcsetpgrp... yes
checking for tempnam... yes
checking for timegm... yes
checking for times... yes
checking for tmpfile... yes
checking for tmpnam... yes
checking for tmpnam_r... yes
checking for truncate... no
checking for uname... yes
checking for unsetenv... yes
checking for utimes... yes
checking for waitpid... no
checking for wait3... yes
checking for wait4... yes
checking for wcscoll... yes
checking for wcsftime... yes
checking for wcsxfrm... yes
checking for _getpty... no
checking for chroot... yes
checking for link... yes
checking for symlink... yes
checking for fchdir... yes
checking for fsync... yes
checking for fdatasync... yes
checking for epoll... yes
checking for kqueue... no
checking for ctermid_r... no
checking for flock declaration... yes
checking for flock... yes
checking for getpagesize... yes
checking for true... true
checking for inet_aton in -lc... yes
checking for chflags... cross
checking for chflags... no
checking for lchflags... cross
checking for lchflags... no
checking for inflateCopy in -lz... no
checking for hstrerror... yes
checking for inet_aton... yes
checking for inet_pton... yes
checking for setgroups... yes
checking for openpty... no
checking for openpty in -lutil... yes
checking for forkpty... yes
checking for memmove... yes
checking for fseek64... no
checking for fseeko... yes
checking for fstatvfs... yes
checking for ftell64... no
checking for ftello... yes
checking for statvfs... yes
checking for dup2... yes
checking for getcwd... yes
checking for strdup... yes
checking for getpgrp... yes
checking for setpgrp... (cached) yes
checking for gettimeofday... yes
checking for major... yes
checking for getaddrinfo... yes
checking getaddrinfo bug... yes
checking for getnameinfo... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct stat.st_rdev... yes
checking for struct stat.st_blksize... yes
checking for struct stat.st_flags... no
checking for struct stat.st_gen... no
checking for struct stat.st_birthtime... no
checking for struct stat.st_blocks... yes
checking for time.h that defines altzone... no
checking whether sys/select.h and sys/time.h may both be included... yes
checking for addrinfo... yes
checking for sockaddr_storage... yes
checking whether char is unsigned... no
checking for an ANSI C-conforming const... yes
checking for working volatile... yes
checking for working signed char... yes
checking for prototypes... yes
checking for variable length prototypes and stdarg.h... yes
checking for socketpair... yes
checking if sockaddr has sa_len member... no
checking whether va_list is an array... yes
checking for gethostbyname_r... yes
checking gethostbyname_r with 6 args... yes
checking for __fpu_control... yes
checking for --with-fpectl... no
checking for --with-libm=STRING... default LIBM="-lm"
checking for --with-libc=STRING... default LIBC="-lzglibc"
checking whether C doubles are little-endian IEEE 754 binary64... no
checking whether C doubles are big-endian IEEE 754 binary64... no
checking whether C doubles are ARM mixed-endian IEEE 754 binary64... no
checking whether we can use gcc inline assembler to get and set x87 control word... yes
checking for x87-style double rounding... no
checking for acosh... yes
checking for asinh... yes
checking for atanh... yes
checking for copysign... yes
checking for erf... yes
checking for erfc... yes
checking for expm1... yes
checking for finite... yes
checking for gamma... yes
checking for hypot... yes
checking for lgamma... yes
checking for log1p... yes
checking for round... yes
checking for tgamma... yes
checking whether isinf is declared... yes
checking whether isnan is declared... yes
checking whether isfinite is declared... yes
checking whether tanh preserves the sign of zero... no
checking whether log1p drops the sign of negative zero... no
checking whether POSIX semaphores are enabled... yes
checking for broken sem_getvalue... yes
checking digit size for Python's longs... no value specified
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking size of wchar_t... 4
checking for UCS-4 tcl... no
checking whether wchar_t is signed... yes
checking what type to use for str... unsigned short
checking whether byte ordering is bigendian... no
checking ABIFLAGS... m
checking SOABI... cpython-32m
checking LDVERSION... $(VERSION)$(ABIFLAGS)
checking SO... .cpython-32m.so
checking whether right shift extends the sign bit... yes
checking for getc_unlocked() and friends... yes
checking how to link readline libs... none
checking for rl_callback_handler_install in -lreadline... no
checking for rl_pre_input_hook in -lreadline... no
checking for rl_completion_display_matches_hook in -lreadline... no
checking for rl_completion_matches in -lreadline... no
checking for broken nice()... no
checking for broken poll()... no
checking for struct tm.tm_zone... (cached) yes
checking for working tzset()... no
checking for tv_nsec in struct stat... yes
checking for tv_nsec2 in struct stat... no
checking whether mvwdelch is an expression... no
checking whether WINDOW has _flags... no
checking for is_term_resized... no
checking for resize_term... no
checking for resizeterm... no
checking for /dev/ptmx... yes
checking for /dev/ptc... no
checking for %lld and %llu printf() format support... yes
checking for %zd printf() format support... cross -- assuming yes
checking for socklen_t... yes
checking for broken mbstowcs... no
checking whether x86_64-nacl-gcc supports computed gotos... no
checking for --with-computed-gotos... no value specified
checking for pipe2... no
checking for build directories... done
configure: creating ./config.status
config.status: creating Makefile.pre
config.status: creating Modules/Setup.config
config.status: creating Misc/python.pc
config.status: creating Modules/ld_so_aix
config.status: creating pyconfig.h
config.status: pyconfig.h is unchanged
creating Modules/Setup
creating Modules/Setup.local
creating Makefile
MAKE PYTHON
x86_64-nacl-gcc -c -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -D__NACL__ -I/home/yaroslav/git/zrt/lib -I. -IInclude -I./Include -DPy_BUILD_CORE \
-DABIFLAGS='"m"' \
-o Python/sysmodule.o ./Python/sysmodule.c
x86_64-nacl-gcc -c -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -D__NACL__ -I/home/yaroslav/git/zrt/lib -I. -IInclude -I./Include -DPy_BUILD_CORE \
-DSOABI='"cpython-32m"' \
-o Python/dynload_shlib.o ./Python/dynload_shlib.c
x86_64-nacl-gcc -c -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -D__NACL__ -I/home/yaroslav/git/zrt/lib -I. -IInclude -I./Include -DPy_BUILD_CORE -o Modules/config.o Modules/config.c
x86_64-nacl-gcc -c -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -D__NACL__ -I/home/yaroslav/git/zrt/lib -I. -IInclude -I./Include -DPy_BUILD_CORE -DPYTHONPATH='":plat-linux2"' \
-DPREFIX='"/python"' \
-DEXEC_PREFIX='"/python"' \
-DVERSION='"3.2"' \
-DVPATH='""' \
-o Modules/getpath.o ./Modules/getpath.c
x86_64-nacl-gcc -c -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -D__NACL__ -I/home/yaroslav/git/zrt/lib -I. -IInclude -I./Include -DPy_BUILD_CORE \
-DSVNVERSION="\"`LC_ALL=C svnversion .`\"" \
-DHGVERSION="\"`LC_ALL=C `\"" \
-DHGTAG="\"`LC_ALL=C `\"" \
-DHGBRANCH="\"`LC_ALL=C `\"" \
-o Modules/getbuildinfo.o ./Modules/getbuildinfo.c
rm -f libpython3.2m.a
x86_64-nacl-ar rc libpython3.2m.a Modules/getbuildinfo.o
x86_64-nacl-ar rc libpython3.2m.a Parser/acceler.o Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o Parser/firstsets.o Parser/grammar.o Parser/pgen.o Parser/myreadline.o Parser/tokenizer.o
x86_64-nacl-ar rc libpython3.2m.a Objects/abstract.o Objects/boolobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/bytesobject.o Objects/cellobject.o Objects/classobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/memoryobject.o Objects/methodobject.o Objects/moduleobject.o Objects/object.o Objects/obmalloc.o Objects/capsule.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/unicodeobject.o Objects/unicodectype.o Objects/weakrefobject.o
x86_64-nacl-ar rc libpython3.2m.a Python/_warnings.o Python/Python-ast.o Python/asdl.o Python/ast.o Python/bltinmodule.o Python/ceval.o Python/compile.o Python/codecs.o Python/dynamic_annotations.o Python/errors.o Python/frozen.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getplatform.o Python/getversion.o Python/graminit.o Python/import.o Python/importdl.o Python/marshal.o Python/modsupport.o Python/mystrtoul.o Python/mysnprintf.o Python/peephole.o Python/pyarena.o Python/pyctype.o Python/pyfpe.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/pytime.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/traceback.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/dtoa.o Python/formatter_unicode.o Python/fileutils.o Python/dynload_shlib.o
x86_64-nacl-ar rc libpython3.2m.a Modules/config.o Modules/getpath.o Modules/main.o Modules/gcmodule.o
x86_64-nacl-ar rc libpython3.2m.a Modules/signalmodule.o Modules/posixmodule.o Modules/errnomodule.o Modules/pwdmodule.o Modules/_sre.o Modules/_codecsmodule.o Modules/_weakref.o Modules/_functoolsmodule.o Modules/operator.o Modules/_collectionsmodule.o Modules/itertoolsmodule.o Modules/_localemodule.o Modules/_iomodule.o Modules/iobase.o Modules/fileio.o Modules/bytesio.o Modules/bufferedio.o Modules/textio.o Modules/stringio.o Modules/zipimport.o Modules/symtablemodule.o Modules/xxsubtype.o
x86_64-nacl-ranlib libpython3.2m.a
x86_64-nacl-gcc -s -static -static-libgcc -T /home/yaroslav/nacl_sdk/pepper_23/toolchain/linux_x86_glibc/x86_64-nacl/lib64/ldscripts/elf64_nacl.x.static -melf64_nacl -m64 -L/home/yaroslav/git/zrt/lib -lzrt -lfs -lstdc++ -lzglibc -o python Modules/python.o libpython3.2m.a -ldl -lutil -lm -lzglibc
checking build system type... x86_64-pc-linux-gnu
checking host system type... Failed to configure _ctypes module
Python build finished, but the necessary bits to build these modules were not found:
_dbm _gdbm _multiprocessing
_tkinter readline
To find the necessary bits, look in setup.py in detect_modules() for the module's name.
Failed to build these modules:
_bisect _codecs_cn _codecs_hk
_codecs_iso2022 _codecs_jp _codecs_kr
_codecs_tw _csv _ctypes_test
_curses _curses_panel _datetime
_elementtree _hashlib _heapq
_json _lsprof _multibytecodec
_pickle _posixsubprocess _random
_socket _sqlite3 _ssl
_struct _testcapi array
atexit audioop binascii
bz2 cmath crypt
fcntl grp math
mmap nis ossaudiodev
parser pyexpat resource
select spwd syslog
termios time unicodedata
zlib
x86_64-nacl-gcc -s -static -static-libgcc -T /home/yaroslav/nacl_sdk/pepper_23/toolchain/linux_x86_glibc/x86_64-nacl/lib64/ldscripts/elf64_nacl.x.static -melf64_nacl -m64 -L/home/yaroslav/git/zrt/lib -lzrt -lfs -lstdc++ -lzglibc -o Modules/_testembed Modules/_testembed.o libpython3.2m.a -ldl -lutil -lm -lzglibc
INSTALL PYTHON
/usr/bin/install -c python ~/Python-3.2.2/_install/bin/python3.2m
if test "3.2" != "3.2m"; then \
if test -f ~/Python-3.2.2/_install/bin/python3.2 -o -h ~/Python-3.2.2/_install/bin/python3.2; \
then rm -f ~/Python-3.2.2/_install/bin/python3.2; \
fi; \
(cd ~/Python-3.2.2/_install/bin; ln python3.2m python3.2); \
fi
if test -f libpython3.2m.a; then \
if test -n "" ; then \
/usr/bin/install -c -m 555 ~/Python-3.2.2/_install/bin; \
else \
/usr/bin/install -c -m 555 libpython3.2m.a ~/Python-3.2.2/_install/lib/libpython3.2m.a; \
if test libpython3.2m.a != libpython3.2m.a; then \
(cd ~/Python-3.2.2/_install/lib; ln -sf libpython3.2m.a libpython3.2m.a) \
fi \
fi; \
if test -n ""; then \
/usr/bin/install -c -m 555 ~/Python-3.2.2/_install/lib/; \
fi; \
else true; \
fi
checking build system type... x86_64-pc-linux-gnu
checking host system type... Failed to configure _ctypes module
Python build finished, but the necessary bits to build these modules were not found:
_dbm _gdbm _multiprocessing
_tkinter readline
To find the necessary bits, look in setup.py in detect_modules() for the module's name.
Failed to build these modules:
_bisect _codecs_cn _codecs_hk
_codecs_iso2022 _codecs_jp _codecs_kr
_codecs_tw _csv _ctypes_test
_curses _curses_panel _datetime
_elementtree _hashlib _heapq
_json _lsprof _multibytecodec
_pickle _posixsubprocess _random
_socket _sqlite3 _ssl
_struct _testcapi array
atexit audioop binascii
bz2 cmath crypt
fcntl grp math
mmap nis ossaudiodev
parser pyexpat resource
select spwd syslog
termios time unicodedata
zlib
/usr/bin/install -c -m 644 ./Lib/__future__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/__phello__.foo.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/_abcoll.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/_compat_pickle.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/_dummy_thread.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/_markupbase.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/_pyio.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/_strptime.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/_threading_local.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/_weakrefset.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/abc.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/aifc.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/antigravity.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/argparse.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/ast.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/asynchat.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/asyncore.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/base64.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/bdb.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/binhex.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/bisect.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/cProfile.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/calendar.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/cgi.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/cgitb.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/chunk.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/cmd.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/code.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/codecs.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/codeop.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/collections.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/colorsys.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/compileall.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/configparser.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/contextlib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/copy.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/copyreg.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/csv.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/datetime.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/decimal.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/difflib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/dis.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/doctest.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/dummy_threading.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/filecmp.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/fileinput.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/fnmatch.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/formatter.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/fractions.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/ftplib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/functools.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/genericpath.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/getopt.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/getpass.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/gettext.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/glob.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/gzip.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/hashlib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/heapq.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/hmac.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/imaplib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/imghdr.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/inspect.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/io.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/keyword.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/linecache.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/locale.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/macpath.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/macurl2path.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/mailbox.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/mailcap.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/mimetypes.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/modulefinder.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/netrc.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/nntplib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/ntpath.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/nturl2path.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/numbers.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/opcode.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/optparse.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/os.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/os2emxpath.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/pdb.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/pickle.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/pickletools.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/pipes.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/pkgutil.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/platform.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/plistlib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/poplib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/posixpath.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/pprint.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/profile.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/pstats.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/pty.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/py_compile.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/pyclbr.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/pydoc.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/queue.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/quopri.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/random.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/re.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/reprlib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/rlcompleter.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/runpy.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/sched.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/shelve.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/shlex.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/shutil.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/site.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/smtpd.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/smtplib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/sndhdr.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/socket.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/socketserver.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/sre_compile.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/sre_constants.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/sre_parse.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/ssl.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/stat.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/string.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/stringprep.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/struct.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/subprocess.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/sunau.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/symbol.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/symtable.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/sysconfig.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/tabnanny.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/tarfile.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/telnetlib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/tempfile.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/textwrap.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/this.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/threading.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/timeit.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/token.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/tokenize.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/trace.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/traceback.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/tty.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/turtle.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/types.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c ./Lib/uu.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/uuid.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/warnings.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/wave.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/weakref.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/webbrowser.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/xdrlib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/zipfile.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/wsgiref.egg-info /home/yaroslav/Python-3.2.2/_install/lib/python3.2
/usr/bin/install -c -m 644 ./Lib/tkinter/__init__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/__main__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/_fix.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/colorchooser.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/commondialog.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/constants.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/dialog.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/dnd.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/filedialog.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/font.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/messagebox.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/scrolledtext.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/simpledialog.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/tix.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/ttk.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/test/README /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test
/usr/bin/install -c -m 644 ./Lib/tkinter/test/__init__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test
/usr/bin/install -c -m 644 ./Lib/tkinter/test/runtktests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test
/usr/bin/install -c -m 644 ./Lib/tkinter/test/support.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test
/usr/bin/install -c -m 644 ./Lib/tkinter/test/test_tkinter/__init__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test/test_tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/test/test_tkinter/test_font.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test/test_tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/test/test_tkinter/test_loadtk.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test/test_tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/test/test_tkinter/test_text.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test/test_tkinter
/usr/bin/install -c -m 644 ./Lib/tkinter/test/test_ttk/__init__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test/test_ttk
/usr/bin/install -c -m 644 ./Lib/tkinter/test/test_ttk/test_extensions.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test/test_ttk
/usr/bin/install -c -m 644 ./Lib/tkinter/test/test_ttk/test_functions.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test/test_ttk
/usr/bin/install -c -m 644 ./Lib/tkinter/test/test_ttk/test_style.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test/test_ttk
/usr/bin/install -c -m 644 ./Lib/tkinter/test/test_ttk/test_widgets.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/tkinter/test/test_ttk
/usr/bin/install -c -m 644 ./Lib/site-packages/README /home/yaroslav/Python-3.2.2/_install/lib/python3.2/site-packages
/usr/bin/install -c -m 644 ./Lib/test/185test.db /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/Sine-1000Hz-300ms.aif /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/__init__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/__main__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/audiotest.au /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/autotest.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/bad_coding.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/bad_coding2.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badcert.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badkey.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badsyntax_3131.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badsyntax_future3.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badsyntax_future4.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badsyntax_future5.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badsyntax_future6.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badsyntax_future7.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badsyntax_future8.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badsyntax_future9.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/badsyntax_pep3120.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/buffer_tests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/cfgparser.1 /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/cfgparser.2 /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/cfgparser.3 /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/check_soundcard.vbs /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/cmath_testcases.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/curses_tests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/datetimetester.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/dis_module.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/doctest_aliases.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/double_const.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/empty.vbs /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/exception_hierarchy.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/floating_points.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/fork_wait.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/formatfloat_testcases.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/gdb_sample.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/https_svn_python_org_root.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/ieee754.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/inspect_fodder.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/inspect_fodder2.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/keycert.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/keycert2.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/list_tests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/lock_tests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/make_ssl_certs.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/mapping_tests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/math_testcases.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/mock_socket.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/nullcert.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/outstanding_bugs.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/pickletester.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/profilee.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/pstats.pck /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/pyclbr_input.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/pydoc_mod.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/pydocfodder.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c ./Lib/test/pystone.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/randv2_32.pck /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/randv2_64.pck /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/randv3.pck /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c ./Lib/test/re_tests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/regex_tests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c ./Lib/test/regrtest.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/relimport.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/reperf.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/sample_doctest.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/script_helper.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/seq_tests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/sgml_input.html /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/sha256.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/sortperf.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/ssl_cert.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/ssl_key.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/ssl_servers.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/string_tests.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/support.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/svn_python_org_https_cert.pem /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test___all__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test___future__.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test__locale.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_abc.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_abstract_numbers.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_aifc.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_argparse.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c ./Lib/test/test_array.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_ast.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_asynchat.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_asyncore.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_atexit.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_audioop.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_augassign.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_base64.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_bigaddrspace.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_bigmem.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_binascii.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c ./Lib/test/test_binhex.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_binop.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_bisect.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_bool.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_bufio.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_builtin.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_bytes.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_bz2.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_calendar.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_call.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_capi.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_cfgparser.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_cgi.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_charmapcodec.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_class.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_cmath.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_cmd.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_cmd_line.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_cmd_line_script.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_code.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codeccallbacks.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecencodings_cn.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecencodings_hk.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecencodings_iso2022.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecencodings_jp.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecencodings_kr.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecencodings_tw.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecmaps_cn.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecmaps_hk.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecmaps_jp.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecmaps_kr.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecmaps_tw.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codecs.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_codeop.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_coding.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_collections.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_colorsys.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_compare.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_compile.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_compileall.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_complex.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_concurrent_futures.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_contains.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_contextlib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_copy.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_copyreg.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_cprofile.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_crypt.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_csv.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_ctypes.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_curses.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_datetime.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_dbm.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_dbm_dumb.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c ./Lib/test/test_dbm_gnu.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c ./Lib/test/test_dbm_ndbm.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_decimal.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_decorators.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_defaultdict.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_deque.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_descr.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_descrtut.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_dict.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_dictcomps.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_dictviews.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_difflib.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_difflib_expect.html /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_dis.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_distutils.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_doctest.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_doctest.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_doctest2.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_doctest2.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_doctest3.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_doctest4.txt /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_docxmlrpc.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_dummy_thread.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_dummy_threading.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_dynamic.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_email.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_enumerate.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_eof.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_epoll.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c ./Lib/test/test_errno.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test
/usr/bin/install -c -m 644 ./Lib/test/test_exception_variations.py /home/yaroslav/Python-3.2.2/_install/lib/python3.2/test