summaryrefslogtreecommitdiff
path: root/glibc/coulomb.SCHWINGE/log_install
blob: 563cbccaa660fed5a7b30893da8381e069f17003 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
LANGUAGE=C LC_ALL=C; export LANGUAGE LC_ALL; \
	make -r PARALLELMFLAGS="" -C ../Roger_Whittaker objdir=`pwd` install
make[1]: Entering directory `[...]/tschwinge/Roger_Whittaker'
make  subdir=mach -C mach ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/mach'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/mach'
make  subdir=hurd -C hurd ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/hurd'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/hurd'
make  subdir=csu -C csu ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/csu'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/csu'
make  subdir=iconv -C iconv ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/iconv'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/iconv'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/iconv'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/iconv'
make  subdir=locale -C locale ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/locale'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/locale'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/locale'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/locale'
make  subdir=localedata -C localedata ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/localedata'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/localedata'
make  subdir=iconvdata -C iconvdata ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/iconvdata'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/iconvdata'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/iconvdata'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/iconvdata'
make  subdir=assert -C assert ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/assert'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/assert'
make  subdir=ctype -C ctype ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/ctype'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/ctype'
make  subdir=intl -C intl ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/intl'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/intl'
make  subdir=catgets -C catgets ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/catgets'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/catgets'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/catgets'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/catgets'
make  subdir=math -C math ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/math'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/math'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/math'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/math'
make  subdir=setjmp -C setjmp ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/setjmp'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/setjmp'
make  subdir=signal -C signal ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/signal'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/signal'
make  subdir=stdlib -C stdlib ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/stdlib'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/stdlib'
make  subdir=stdio-common -C stdio-common ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/stdio-common'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/stdio-common'
make  subdir=libio -C libio ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/libio'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/libio'
make  subdir=dlfcn -C dlfcn ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/dlfcn'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/dlfcn'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/dlfcn'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/dlfcn'
make  subdir=malloc -C malloc ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/malloc'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/malloc'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/malloc'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/malloc'
make  subdir=string -C string ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/string'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/string'
make  subdir=wcsmbs -C wcsmbs ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/wcsmbs'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/wcsmbs'
make  subdir=timezone -C timezone ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/timezone'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/timezone'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/timezone'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/timezone'
make  subdir=time -C time ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/time'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/time'
make  subdir=dirent -C dirent ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/dirent'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/dirent'
make  subdir=grp -C grp ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/grp'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/grp'
make  subdir=pwd -C pwd ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/pwd'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/pwd'
make  subdir=posix -C posix ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/posix'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/posix'
make  subdir=io -C io ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/io'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/io'
make  subdir=termios -C termios ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/termios'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/termios'
make  subdir=resource -C resource ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/resource'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/resource'
make  subdir=misc -C misc ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/misc'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/misc'
make  subdir=socket -C socket ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/socket'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/socket'
make  subdir=sysvipc -C sysvipc ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/sysvipc'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/sysvipc'
make  subdir=gmon -C gmon ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/gmon'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/gmon'
make  subdir=gnulib -C gnulib ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/gnulib'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/gnulib'
make  subdir=wctype -C wctype ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/wctype'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/wctype'
make  subdir=manual -C manual ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/manual'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/manual'
make  subdir=shadow -C shadow ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/shadow'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/shadow'
make  subdir=gshadow -C gshadow ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/gshadow'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/gshadow'
make  subdir=po -C po ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/po'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/po'
make  subdir=argp -C argp ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/argp'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/argp'
make  subdir=crypt -C crypt ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/crypt'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/crypt'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/crypt'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/crypt'
make  subdir=rt -C rt ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/rt'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/rt'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/rt'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/rt'
make  subdir=conform -C conform ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/conform'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/conform'
make  subdir=debug -C debug ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/debug'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/debug'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/debug'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/debug'
make  subdir=libidn -C libidn ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/libidn'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/libidn'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/libidn'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/libidn'
make  subdir=inet -C inet ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/inet'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/inet'
make  subdir=resolv -C resolv ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/resolv'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/resolv'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/resolv'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/resolv'
make  subdir=nss -C nss ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/nss'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/nss'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/nss'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/nss'
make  subdir=hesiod -C hesiod ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/hesiod'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/hesiod'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/hesiod'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/hesiod'
make  subdir=sunrpc -C sunrpc ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/sunrpc'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/sunrpc'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/sunrpc'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/sunrpc'
make  subdir=nis -C nis ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/nis'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/nis'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/nis'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/nis'
make  subdir=nscd -C nscd ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/nscd'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/nscd'
make  subdir=streams -C streams ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/streams'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/streams'
make  subdir=login -C login ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/login'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/login'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/login'
make[2]: Nothing to be done for `subdir_lib'.
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/login'
make  subdir=elf -C elf ..=../ subdir_lib
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/elf'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/elf'
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/elf'
make -f [...]/tschwinge/Roger_Whittaker.build/elf/librtld.mk -f rtld-Rules
make[3]: Entering directory `[...]/tschwinge/Roger_Whittaker/elf'
make subdir=csu -C ../csu ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-divdi3.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/csu'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/csu'
make subdir=gmon -C ../gmon ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-profil.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/gmon'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/gmon'
make subdir=hurd -C ../hurd ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-hurdstartup.os rtld-lookup-retry.os rtld-errno-loc.os rtld-RPC_auth_user_authenticate.os rtld-RPC_proc_getpids.os rtld-RPC_proc_mark_exit.os rtld-RPC_exec_startup_get_info.os rtld-RPC_file_set_size.os rtld-RPC_dir_lookup.os rtld-RPC_file_get_translator.os rtld-RPC_io_write.os rtld-RPC_io_read.os rtld-RPC_io_seek.os rtld-RPC_io_stat.os rtld-RPC_io_reauthenticate.os rtld-RPC_io_map.os rtld-RPC_termctty_open_terminal.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/hurd'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/hurd'
make subdir=io -C ../io ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-lseek.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/io'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/io'
make subdir=mach -C ../mach ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-mach_thread_self.os rtld-mach_task_self.os rtld-swtch_pri.os rtld-vm_map.os rtld-vm_deallocate.os rtld-task_terminate.os rtld-mach_port_deallocate.os rtld-mach_init.os rtld-msg.os rtld-mig-reply.os rtld-mutex-solid.os rtld-mach_msg_trap.os rtld-mach_reply_port.os rtld-mach_host_self.os rtld-syscall_vm_map.os rtld-syscall_vm_deallocate.os rtld-syscall_task_terminate.os rtld-syscall_mach_port_deallocate.os rtld-setup-thread.os rtld-spin-solid.os rtld-spin-lock.os rtld-vm_allocate.os rtld-syscall_vm_allocate.os rtld-RPC_task_terminate_rpc.os rtld-RPC_thread_get_state.os rtld-RPC_thread_set_state.os rtld-RPC_vm_allocate_rpc.os rtld-RPC_vm_deallocate_rpc.os rtld-RPC_vm_protect.os rtld-RPC_vm_region.os rtld-RPC_vm_statistics.os rtld-RPC_task_get_special_port.os rtld-RPC_thread_create.os rtld-RPC_thread_suspend.os rtld-RPC_thread_resume.os rtld-RPC_vm_map_rpc.os rtld-RPC_task_enable_pc_sampling.os rtld-RPC_task_disable_pc_sampling.os rtld-RPC_i386_set_ldt.os rtld-RPC_i386_set_gdt.os rtld-RPC_mach_port_destroy.os rtld-RPC_mach_port_deallocate_rpc.os rtld-RPC_mach_port_mod_refs.os rtld-RPC_host_info.os rtld-mig-alloc.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/mach'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/mach'
make subdir=misc -C ../misc ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-getpagesize.os rtld-munmap.os rtld-mprotect.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/misc'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/misc'
make subdir=posix -C ../posix ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-environ.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/posix'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/posix'
make subdir=setjmp -C ../setjmp ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-setjmp.os rtld-__longjmp.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/setjmp'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/setjmp'
make subdir=string -C ../string ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-strchr.os rtld-strcmp.os rtld-strcpy.os rtld-strlen.os rtld-strnlen.os rtld-memchr.os rtld-memcmp.os rtld-memmove.os rtld-memset.os rtld-mempcpy.os rtld-stpcpy.os rtld-memcpy.os rtld-rawmemchr.os rtld-argz-count.os rtld-argz-extract.os rtld-stpncpy.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/string'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/string'
make[3]: Leaving directory `[...]/tschwinge/Roger_Whittaker/elf'
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/elf'
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib
mkdir [...]/tschwinge/Roger_Whittaker.build.install
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/lib
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/libc.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcrt.a
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/libc_nonshared.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcrt_nonshared.a
make -C elf ldso_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/elf'
make -f [...]/tschwinge/Roger_Whittaker.build/elf/librtld.mk -f rtld-Rules
make[3]: Entering directory `[...]/tschwinge/Roger_Whittaker/elf'
make subdir=csu -C ../csu ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-divdi3.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/csu'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/csu'
make subdir=gmon -C ../gmon ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-profil.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/gmon'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/gmon'
make subdir=hurd -C ../hurd ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-hurdstartup.os rtld-lookup-retry.os rtld-errno-loc.os rtld-RPC_auth_user_authenticate.os rtld-RPC_proc_getpids.os rtld-RPC_proc_mark_exit.os rtld-RPC_exec_startup_get_info.os rtld-RPC_file_set_size.os rtld-RPC_dir_lookup.os rtld-RPC_file_get_translator.os rtld-RPC_io_write.os rtld-RPC_io_read.os rtld-RPC_io_seek.os rtld-RPC_io_stat.os rtld-RPC_io_reauthenticate.os rtld-RPC_io_map.os rtld-RPC_termctty_open_terminal.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/hurd'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/hurd'
make subdir=io -C ../io ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-lseek.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/io'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/io'
make subdir=mach -C ../mach ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-mach_thread_self.os rtld-mach_task_self.os rtld-swtch_pri.os rtld-vm_map.os rtld-vm_deallocate.os rtld-task_terminate.os rtld-mach_port_deallocate.os rtld-mach_init.os rtld-msg.os rtld-mig-reply.os rtld-mutex-solid.os rtld-mach_msg_trap.os rtld-mach_reply_port.os rtld-mach_host_self.os rtld-syscall_vm_map.os rtld-syscall_vm_deallocate.os rtld-syscall_task_terminate.os rtld-syscall_mach_port_deallocate.os rtld-setup-thread.os rtld-spin-solid.os rtld-spin-lock.os rtld-vm_allocate.os rtld-syscall_vm_allocate.os rtld-RPC_task_terminate_rpc.os rtld-RPC_thread_get_state.os rtld-RPC_thread_set_state.os rtld-RPC_vm_allocate_rpc.os rtld-RPC_vm_deallocate_rpc.os rtld-RPC_vm_protect.os rtld-RPC_vm_region.os rtld-RPC_vm_statistics.os rtld-RPC_task_get_special_port.os rtld-RPC_thread_create.os rtld-RPC_thread_suspend.os rtld-RPC_thread_resume.os rtld-RPC_vm_map_rpc.os rtld-RPC_task_enable_pc_sampling.os rtld-RPC_task_disable_pc_sampling.os rtld-RPC_i386_set_ldt.os rtld-RPC_i386_set_gdt.os rtld-RPC_mach_port_destroy.os rtld-RPC_mach_port_deallocate_rpc.os rtld-RPC_mach_port_mod_refs.os rtld-RPC_host_info.os rtld-mig-alloc.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/mach'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/mach'
make subdir=misc -C ../misc ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-getpagesize.os rtld-munmap.os rtld-mprotect.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/misc'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/misc'
make subdir=posix -C ../posix ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-environ.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/posix'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/posix'
make subdir=setjmp -C ../setjmp ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-setjmp.os rtld-__longjmp.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/setjmp'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/setjmp'
make subdir=string -C ../string ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-strchr.os rtld-strcmp.os rtld-strcpy.os rtld-strlen.os rtld-strnlen.os rtld-memchr.os rtld-memcmp.os rtld-memmove.os rtld-memset.os rtld-mempcpy.os rtld-stpcpy.os rtld-memcpy.os rtld-rawmemchr.os rtld-argz-count.os rtld-argz-extract.os rtld-stpncpy.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/string'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/string'
make[3]: Leaving directory `[...]/tschwinge/Roger_Whittaker/elf'
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/lib
mkdir [...]/tschwinge/Roger_Whittaker.build.install/lib
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/lib
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/elf/ld.so [...]/tschwinge/Roger_Whittaker.build.install/lib/ld-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/ld-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/ld-2.17.90.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/lib
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/libc.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/lib
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/ld-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/ld.so.1` [...]/tschwinge/Roger_Whittaker.build.install/lib/ld.so.1 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/elf'
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/libc.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so
echo `scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libc.so.0.3` [...]/tschwinge/Roger_Whittaker.build.install/lib/libc.so.0.3 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
echo > [...]/tschwinge/Roger_Whittaker.build/format.lds.new 'OUTPUT_FORMAT(elf32-i386)'
mv -f [...]/tschwinge/Roger_Whittaker.build/format.lds.new [...]/tschwinge/Roger_Whittaker.build/format.lds
(echo '/* GNU ld script';\
	 echo '   Use the shared library, but some functions are only in';\
	 echo '   the static library, so try that secondarily.  */';\
	 cat [...]/tschwinge/Roger_Whittaker.build/format.lds; \
	 echo 'GROUP ( /lib/libc.so.0.3' \
	      '/usr/lib/libcrt_nonshared.a'\
	      ' AS_NEEDED (' /lib/ld.so.1 ') )' \
	) > [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libc.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libc.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libc.so
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include
/usr/bin/install -c -m 644 include/limits.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/limits.h
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include
/usr/bin/install -c -m 644 include/values.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/values.h
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include
/usr/bin/install -c -m 644 include/features.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/features.h
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include
/usr/bin/install -c -m 644 include/gnu-versions.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu-versions.h
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits
/usr/bin/install -c -m 644 sysdeps/mach/hurd/bits/libc-lock.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/libc-lock.h
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits
/usr/bin/install -c -m 644 include/bits/xopen_lim.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/xopen_lim.h
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu
/usr/bin/install -c -m 644 include/gnu/libc-version.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu/libc-version.h
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include
/usr/bin/install -c -m 644 include/stdc-predef.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/stdc-predef.h
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/gnu/lib-names.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu/lib-names.h
make  subdir=mach -C mach ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/mach'
/usr/bin/install -c -m 644 mach_init.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach_init.h
/usr/bin/install -c -m 644 mach.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach.h
/usr/bin/install -c -m 644 mach_error.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach_error.h
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach-shortcuts.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach-shortcuts.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 mach/mach_traps.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/mach_traps.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/mach_interface.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/mach_interface.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/mach4.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/mach4.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/memory_object_user.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/memory_object_user.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/memory_object_default.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/memory_object_default.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/default_pager.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/default_pager.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/i386
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/i386
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/i386/mach_i386.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/i386/mach_i386.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/mach_port.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/mach_port.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/mach_host.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/mach_host.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/exc.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/exc.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/device
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/device
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/device/device.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/device/device.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/device
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/device/device_request.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/device/device_request.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/mach/exc_server.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/exc_server.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 mach/mach.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/mach.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 mach/mig_support.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/mig_support.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach
/usr/bin/install -c -m 644 mach/error.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mach/error.h
/usr/bin/install -c -m 644 lock-intern.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/lock-intern.h
/usr/bin/install -c -m 644 ../sysdeps/mach/i386/machine-lock.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/machine-lock.h
/usr/bin/install -c -m 644 spin-lock.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/spin-lock.h
/usr/bin/install -c -m 644 ../sysdeps/mach/i386/machine-sp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/machine-sp.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/mach/libmachuser.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libmachuser-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libmachuser-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libmachuser-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libmachuser-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libmachuser.so.1` [...]/tschwinge/Roger_Whittaker.build.install/lib/libmachuser.so.1 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libmachuser.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libmachuser.so.1 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libmachuser.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libmachuser.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libmachuser.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/mach/libmachuser.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libmachuser.a
(cd [...]/tschwinge/Roger_Whittaker.build/mach/.; objdump -h evc_wait.o evc_wait_clear.o mach_msg_trap.o mach_reply_port.o mach_thread_self.o mach_task_self.o mach_host_self.o mach_print.o swtch_pri.o swtch.o thread_switch.o nw_update.o nw_lookup.o nw_endpoint_allocate.o nw_endpoint_deallocate.o nw_buffer_allocate.o nw_buffer_deallocate.o nw_connection_open.o nw_connection_accept.o nw_connection_close.o nw_multicast_add.o nw_multicast_drop.o nw_endpoint_status.o nw_send.o nw_receive.o nw_rpc.o nw_select.o syscall_vm_map.o syscall_vm_allocate.o syscall_vm_deallocate.o syscall_task_create.o syscall_task_terminate.o syscall_task_suspend.o syscall_task_set_special_port.o syscall_mach_port_allocate.o syscall_mach_port_deallocate.o syscall_mach_port_insert_right.o syscall_mach_port_allocate_name.o syscall_thread_depress_abort.o vm_map.o vm_allocate.o vm_deallocate.o task_create.o task_terminate.o task_suspend.o task_set_special_port.o mach_port_allocate.o mach_port_deallocate.o mach_port_insert_right.o mach_port_allocate_name.o thread_depress_abort.o mach_init.o mig_strncpy.o msg.o mig-alloc.o mig-dealloc.o mig-reply.o msg-destroy.o msgserver.o mach_error.o errstring.o error_compat.o errsystems.o devstream.o setup-thread.o spin-solid.o spin-lock.o mutex-init.o mutex-solid.o evc_wait.os evc_wait_clear.os mach_msg_trap.os mach_reply_port.os mach_thread_self.os mach_task_self.os mach_host_self.os mach_print.os swtch_pri.os swtch.os thread_switch.os nw_update.os nw_lookup.os nw_endpoint_allocate.os nw_endpoint_deallocate.os nw_buffer_allocate.os nw_buffer_deallocate.os nw_connection_open.os nw_connection_accept.os nw_connection_close.os nw_multicast_add.os nw_multicast_drop.os nw_endpoint_status.os nw_send.os nw_receive.os nw_rpc.os nw_select.os syscall_vm_map.os syscall_vm_allocate.os syscall_vm_deallocate.os syscall_task_create.os syscall_task_terminate.os syscall_task_suspend.os syscall_task_set_special_port.os syscall_mach_port_allocate.os syscall_mach_port_deallocate.os syscall_mach_port_insert_right.os syscall_mach_port_allocate_name.os syscall_thread_depress_abort.os vm_map.os vm_allocate.os vm_deallocate.os task_create.os task_terminate.os task_suspend.os task_set_special_port.os mach_port_allocate.os mach_port_deallocate.os mach_port_insert_right.os mach_port_allocate_name.os thread_depress_abort.os mach_init.os mig_strncpy.os msg.os mig-alloc.os mig-dealloc.os mig-reply.os msg-destroy.os msgserver.os mach_error.os errstring.os error_compat.os errsystems.os devstream.os setup-thread.os spin-solid.os spin-lock.os mutex-init.os mutex-solid.os RPC_task_create_rpc.o RPC_task_terminate_rpc.o RPC_task_get_emulation_vector.o RPC_task_set_emulation_vector.o RPC_task_threads.o RPC_task_info.o RPC_thread_terminate.o RPC_thread_get_state.o RPC_thread_set_state.o RPC_thread_info.o RPC_vm_allocate_rpc.o RPC_vm_deallocate_rpc.o RPC_vm_protect.o RPC_vm_inherit.o RPC_vm_read.o RPC_vm_write.o RPC_vm_copy.o RPC_vm_region.o RPC_vm_statistics.o RPC_mach_ports_register.o RPC_mach_ports_lookup.o RPC_memory_object_data_provided.o RPC_memory_object_data_unavailable.o RPC_memory_object_get_attributes.o RPC_vm_set_default_memory_manager.o RPC_memory_object_lock_request.o RPC_task_suspend_rpc.o RPC_task_resume.o RPC_task_get_special_port.o RPC_task_set_special_port_rpc.o RPC_thread_create.o RPC_thread_suspend.o RPC_thread_resume.o RPC_thread_abort.o RPC_thread_get_special_port.o RPC_thread_set_special_port.o RPC_task_set_emulation.o RPC_task_ras_control.o RPC_vm_map_rpc.o RPC_memory_object_data_error.o RPC_memory_object_set_attributes.o RPC_memory_object_destroy.o RPC_memory_object_data_supply.o RPC_memory_object_ready.o RPC_memory_object_change_attributes.o RPC_vm_machine_attribute.o RPC_task_enable_pc_sampling.o RPC_task_disable_pc_sampling.o RPC_task_get_sampled_pcs.o RPC_thread_enable_pc_sampling.o RPC_thread_disable_pc_sampling.o RPC_thread_get_sampled_pcs.o RPC_memory_object_create_proxy.o RPC_memory_object_init.o RPC_memory_object_terminate.o RPC_memory_object_copy.o RPC_memory_object_data_request.o RPC_memory_object_data_unlock.o RPC_memory_object_data_write.o RPC_memory_object_lock_completed.o RPC_memory_object_supply_completed.o RPC_memory_object_data_return.o RPC_memory_object_change_completed.o RPC_memory_object_create.o RPC_memory_object_data_initialize.o RPC_default_pager_object_create.o RPC_default_pager_info.o RPC_default_pager_objects.o RPC_default_pager_object_pages.o RPC_default_pager_paging_file.o RPC_default_pager_register_fileserver.o RPC_i386_set_ldt.o RPC_i386_get_ldt.o RPC_i386_io_perm_create.o RPC_i386_io_perm_modify.o RPC_i386_set_gdt.o RPC_i386_get_gdt.o RPC_mach_port_names.o RPC_mach_port_type.o RPC_mach_port_rename.o RPC_mach_port_allocate_name_rpc.o RPC_mach_port_allocate_rpc.o RPC_mach_port_destroy.o RPC_mach_port_deallocate_rpc.o RPC_mach_port_get_refs.o RPC_mach_port_mod_refs.o RPC_old_mach_port_get_receive_status.o RPC_mach_port_set_qlimit.o RPC_mach_port_set_mscount.o RPC_mach_port_get_set_status.o RPC_mach_port_move_member.o RPC_mach_port_request_notification.o RPC_mach_port_insert_right_rpc.o RPC_mach_port_extract_right.o RPC_mach_port_get_receive_status.o RPC_mach_port_set_seqno.o RPC_host_processors.o RPC_processor_start.o RPC_processor_exit.o RPC_processor_set_default.o RPC_processor_set_create.o RPC_processor_set_destroy.o RPC_processor_assign.o RPC_processor_get_assignment.o RPC_thread_assign.o RPC_thread_assign_default.o RPC_thread_get_assignment.o RPC_task_assign.o RPC_task_assign_default.o RPC_task_get_assignment.o RPC_host_kernel_version.o RPC_thread_priority.o RPC_thread_max_priority.o RPC_task_priority.o RPC_processor_set_max_priority.o RPC_thread_policy.o RPC_processor_set_policy_enable.o RPC_processor_set_policy_disable.o RPC_processor_set_tasks.o RPC_processor_set_threads.o RPC_host_processor_sets.o RPC_host_processor_set_priv.o RPC_thread_depress_abort_rpc.o RPC_host_set_time.o RPC_host_adjust_time.o RPC_host_get_time.o RPC_host_reboot.o RPC_vm_wire.o RPC_thread_wire.o RPC_host_info.o RPC_processor_info.o RPC_processor_set_info.o RPC_processor_control.o RPC_host_get_boot_info.o RPC_exception_raise.o RPC_device_open.o RPC_device_close.o RPC_device_write.o RPC_device_write_inband.o RPC_device_read.o RPC_device_read_inband.o RPC_device_map.o RPC_device_set_status.o RPC_device_get_status.o RPC_device_set_filter.o RPC_device_open_request.o RPC_device_write_request.o RPC_device_write_request_inband.o RPC_device_read_request.o RPC_device_read_request_inband.o mach/exc_server.o RPC_task_create_rpc.os RPC_task_terminate_rpc.os RPC_task_get_emulation_vector.os RPC_task_set_emulation_vector.os RPC_task_threads.os RPC_task_info.os RPC_thread_terminate.os RPC_thread_get_state.os RPC_thread_set_state.os RPC_thread_info.os RPC_vm_allocate_rpc.os RPC_vm_deallocate_rpc.os RPC_vm_protect.os RPC_vm_inherit.os RPC_vm_read.os RPC_vm_write.os RPC_vm_copy.os RPC_vm_region.os RPC_vm_statistics.os RPC_mach_ports_register.os RPC_mach_ports_lookup.os RPC_memory_object_data_provided.os RPC_memory_object_data_unavailable.os RPC_memory_object_get_attributes.os RPC_vm_set_default_memory_manager.os RPC_memory_object_lock_request.os RPC_task_suspend_rpc.os RPC_task_resume.os RPC_task_get_special_port.os RPC_task_set_special_port_rpc.os RPC_thread_create.os RPC_thread_suspend.os RPC_thread_resume.os RPC_thread_abort.os RPC_thread_get_special_port.os RPC_thread_set_special_port.os RPC_task_set_emulation.os RPC_task_ras_control.os RPC_vm_map_rpc.os RPC_memory_object_data_error.os RPC_memory_object_set_attributes.os RPC_memory_object_destroy.os RPC_memory_object_data_supply.os RPC_memory_object_ready.os RPC_memory_object_change_attributes.os RPC_vm_machine_attribute.os RPC_task_enable_pc_sampling.os RPC_task_disable_pc_sampling.os RPC_task_get_sampled_pcs.os RPC_thread_enable_pc_sampling.os RPC_thread_disable_pc_sampling.os RPC_thread_get_sampled_pcs.os RPC_memory_object_create_proxy.os RPC_memory_object_init.os RPC_memory_object_terminate.os RPC_memory_object_copy.os RPC_memory_object_data_request.os RPC_memory_object_data_unlock.os RPC_memory_object_data_write.os RPC_memory_object_lock_completed.os RPC_memory_object_supply_completed.os RPC_memory_object_data_return.os RPC_memory_object_change_completed.os RPC_memory_object_create.os RPC_memory_object_data_initialize.os RPC_default_pager_object_create.os RPC_default_pager_info.os RPC_default_pager_objects.os RPC_default_pager_object_pages.os RPC_default_pager_paging_file.os RPC_default_pager_register_fileserver.os RPC_i386_set_ldt.os RPC_i386_get_ldt.os RPC_i386_io_perm_create.os RPC_i386_io_perm_modify.os RPC_i386_set_gdt.os RPC_i386_get_gdt.os RPC_mach_port_names.os RPC_mach_port_type.os RPC_mach_port_rename.os RPC_mach_port_allocate_name_rpc.os RPC_mach_port_allocate_rpc.os RPC_mach_port_destroy.os RPC_mach_port_deallocate_rpc.os RPC_mach_port_get_refs.os RPC_mach_port_mod_refs.os RPC_old_mach_port_get_receive_status.os RPC_mach_port_set_qlimit.os RPC_mach_port_set_mscount.os RPC_mach_port_get_set_status.os RPC_mach_port_move_member.os RPC_mach_port_request_notification.os RPC_mach_port_insert_right_rpc.os RPC_mach_port_extract_right.os RPC_mach_port_get_receive_status.os RPC_mach_port_set_seqno.os RPC_host_processors.os RPC_processor_start.os RPC_processor_exit.os RPC_processor_set_default.os RPC_processor_set_create.os RPC_processor_set_destroy.os RPC_processor_assign.os RPC_processor_get_assignment.os RPC_thread_assign.os RPC_thread_assign_default.os RPC_thread_get_assignment.os RPC_task_assign.os RPC_task_assign_default.os RPC_task_get_assignment.os RPC_host_kernel_version.os RPC_thread_priority.os RPC_thread_max_priority.os RPC_task_priority.os RPC_processor_set_max_priority.os RPC_thread_policy.os RPC_processor_set_policy_enable.os RPC_processor_set_policy_disable.os RPC_processor_set_tasks.os RPC_processor_set_threads.os RPC_host_processor_sets.os RPC_host_processor_set_priv.os RPC_thread_depress_abort_rpc.os RPC_host_set_time.os RPC_host_adjust_time.os RPC_host_get_time.os RPC_host_reboot.os RPC_vm_wire.os RPC_thread_wire.os RPC_host_info.os RPC_processor_info.os RPC_processor_set_info.os RPC_processor_control.os RPC_host_get_boot_info.os RPC_exception_raise.os RPC_device_open.os RPC_device_close.os RPC_device_write.os RPC_device_write_inband.os RPC_device_read.os RPC_device_read_inband.os RPC_device_map.os RPC_device_set_status.os RPC_device_get_status.os RPC_device_set_filter.os RPC_device_open_request.os RPC_device_write_request.os RPC_device_write_request_inband.os RPC_device_read_request.os RPC_device_read_request_inband.os mach/exc_server.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/mach/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/mach/stubsT [...]/tschwinge/Roger_Whittaker.build/mach/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/mach'
make  subdir=hurd -C hurd ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/hurd'
/usr/bin/install -c -m 644 hurd.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/auth.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/auth.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/startup.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/startup.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/process.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/process.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/process_request.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/process_request.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/msg.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/msg.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/msg_reply.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/msg_reply.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/msg_request.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/msg_request.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/exec.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/exec.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/exec_startup.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/exec_startup.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/crash.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/crash.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/interrupt.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/interrupt.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/fs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/fs.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/fsys.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/fsys.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/io.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/io.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/io_reply.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/io_reply.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/io_request.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/io_request.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/term.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/term.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/tioctl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/tioctl.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/socket.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/socket.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/ifsock.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/ifsock.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/login.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/login.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/password.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/password.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/pfinet.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/pfinet.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/hurd/msg_server.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/msg_server.h
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/faultexc_server.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/faultexc_server.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/fd.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/fd.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/id.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/id.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/port.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/port.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/signal.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/signal.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/sigpreempt.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/sigpreempt.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/ioctl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/ioctl.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/userlink.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/userlink.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/resource.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/resource.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/threadvar.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/threadvar.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd
/usr/bin/install -c -m 644 hurd/lookup.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/hurd/lookup.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/hurd/libhurduser.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libhurduser-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libhurduser-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libhurduser-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libhurduser-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libhurduser.so.0.3` [...]/tschwinge/Roger_Whittaker.build.install/lib/libhurduser.so.0.3 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libhurduser.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libhurduser.so.0.3 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libhurduser.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libhurduser.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libhurduser.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/hurd/libhurduser.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libhurduser.a
(cd [...]/tschwinge/Roger_Whittaker.build/hurd/.; objdump -h hurdstartup.o hurdinit.o hurdid.o hurdpid.o hurdrlimit.o hurdprio.o hurdexec.o hurdselect.o hurdlookup.o lookup-retry.o lookup-at.o get-host.o set-host.o path-lookup.o setauth.o pid2task.o task2pid.o geteuids.o seteuids.o getumask.o fchroot.o hurdsock.o hurdauth.o hurdchdir.o hurdfchdir.o privports.o msgportdemux.o fopenport.o vpprintf.o ports-get.o ports-set.o hurdports.o hurdmsg.o errno-loc.o sysvshm.o hurdsig.o hurdfault.o siginfo.o hurd-raise.o preempt-sig.o trampoline.o longjmp-ts.o catch-exc.o exc2signal.o hurdkill.o sigunwind.o thread-self.o thread-cancel.o intr-msg.o catch-signal.o dtable.o port2fd.o new-fd.o alloc-fd.o intern-fd.o getdport.o openport.o fd-close.o fd-read.o fd-write.o hurdioctl.o ctty-input.o ctty-output.o hurd-inlines.o hurd/fd-inlines.o hurd/signal-inlines.o hurd/userlink-inlines.o hurd/threadvar-inlines.o hurd/port-inlines.o port-cleanup.o report-wait.o xattr.o hurdmalloc.o cthreads.o hurdstartup.os hurdinit.os hurdid.os hurdpid.os hurdrlimit.os hurdprio.os hurdexec.os hurdselect.os hurdlookup.os lookup-retry.os lookup-at.os get-host.os set-host.os path-lookup.os setauth.os pid2task.os task2pid.os geteuids.os seteuids.os getumask.os fchroot.os hurdsock.os hurdauth.os hurdchdir.os hurdfchdir.os privports.os msgportdemux.os fopenport.os vpprintf.os ports-get.os ports-set.os hurdports.os hurdmsg.os errno-loc.os sysvshm.os hurdsig.os hurdfault.os siginfo.os hurd-raise.os preempt-sig.os trampoline.os longjmp-ts.os catch-exc.os exc2signal.os hurdkill.os sigunwind.os thread-self.os thread-cancel.os intr-msg.os catch-signal.os dtable.os port2fd.os new-fd.os alloc-fd.os intern-fd.os getdport.os openport.os fd-close.os fd-read.os fd-write.os hurdioctl.os ctty-input.os ctty-output.os hurd-inlines.os hurd/fd-inlines.os hurd/signal-inlines.os hurd/userlink-inlines.os hurd/threadvar-inlines.os hurd/port-inlines.os port-cleanup.os report-wait.os xattr.os hurdmalloc.os compat-20.os cthreads.os RPC_auth_getids.o RPC_auth_makeauth.o RPC_auth_user_authenticate.o RPC_auth_server_authenticate.o RPC_startup_essential_task.o RPC_startup_request_notification.o RPC_startup_reboot.o RPC_startup_procinit.o RPC_startup_authinit.o RPC_proc_getprivports.o RPC_proc_getallpids.o RPC_proc_setexecdata.o RPC_proc_getexecdata.o RPC_proc_execdata_notify.o RPC_proc_uname.o RPC_proc_register_version.o RPC_proc_reauthenticate.o RPC_proc_child.o RPC_proc_setmsgport.o RPC_proc_reassign.o RPC_proc_setowner.o RPC_proc_getpids.o RPC_proc_set_arg_locations.o RPC_proc_get_arg_locations.o RPC_proc_getmsgport.o RPC_proc_wait.o RPC_proc_dostop.o RPC_proc_handle_exceptions.o RPC_proc_mark_stop.o RPC_proc_mark_cont.o RPC_proc_mark_exit.o RPC_proc_mark_exec.o RPC_proc_mark_traced.o RPC_proc_mod_stopchild.o RPC_proc_pid2task.o RPC_proc_task2pid.o RPC_proc_task2proc.o RPC_proc_proc2task.o RPC_proc_pid2proc.o RPC_proc_getprocinfo.o RPC_proc_getprocargs.o RPC_proc_getprocenv.o RPC_proc_make_login_coll.o RPC_proc_getloginid.o RPC_proc_getloginpids.o RPC_proc_setlogin.o RPC_proc_getlogin.o RPC_proc_setsid.o RPC_proc_getsid.o RPC_proc_getsessionpgids.o RPC_proc_getsessionpids.o RPC_proc_getsidport.o RPC_proc_setpgrp.o RPC_proc_getpgrp.o RPC_proc_getpgrppids.o RPC_proc_get_tty.o RPC_proc_getnports.o RPC_proc_getprivports_request.o RPC_proc_getallpids_request.o RPC_proc_setexecdata_request.o RPC_proc_getexecdata_request.o RPC_proc_execdata_notify_request.o RPC_proc_uname_request.o RPC_proc_register_version_request.o RPC_proc_reauthenticate_request.o RPC_proc_child_request.o RPC_proc_setmsgport_request.o RPC_proc_reassign_request.o RPC_proc_setowner_request.o RPC_proc_getpids_request.o RPC_proc_set_arg_locations_request.o RPC_proc_get_arg_locations_request.o RPC_proc_getmsgport_request.o RPC_proc_wait_request.o RPC_proc_dostop_request.o RPC_proc_handle_exceptions_request.o RPC_proc_mark_stop_request.o RPC_proc_mark_cont_request.o RPC_proc_mark_exit_request.o RPC_proc_mark_exec_request.o RPC_proc_mark_traced_request.o RPC_proc_mod_stopchild_request.o RPC_proc_pid2task_request.o RPC_proc_task2pid_request.o RPC_proc_task2proc_request.o RPC_proc_proc2task_request.o RPC_proc_pid2proc_request.o RPC_proc_getprocinfo_request.o RPC_proc_getprocargs_request.o RPC_proc_getprocenv_request.o RPC_proc_make_login_coll_request.o RPC_proc_getloginid_request.o RPC_proc_getloginpids_request.o RPC_proc_setlogin_request.o RPC_proc_getlogin_request.o RPC_proc_setsid_request.o RPC_proc_getsid_request.o RPC_proc_getsessionpgids_request.o RPC_proc_getsessionpids_request.o RPC_proc_getsidport_request.o RPC_proc_setpgrp_request.o RPC_proc_getpgrp_request.o RPC_proc_getpgrppids_request.o RPC_proc_get_tty_request.o RPC_proc_getnports_request.o RPC_msg_sig_post.o RPC_msg_proc_newids.o RPC_msg_add_auth.o RPC_msg_del_auth.o RPC_msg_get_init_port.o RPC_msg_set_init_port.o RPC_msg_get_init_ports.o RPC_msg_set_init_ports.o RPC_msg_get_init_int.o RPC_msg_set_init_int.o RPC_msg_get_init_ints.o RPC_msg_set_init_ints.o RPC_msg_get_dtable.o RPC_msg_set_dtable.o RPC_msg_get_fd.o RPC_msg_set_fd.o RPC_msg_get_environment.o RPC_msg_set_environment.o RPC_msg_get_env_variable.o RPC_msg_set_env_variable.o RPC_msg_sig_post_untraced.o RPC_msg_report_wait.o RPC_msg_describe_ports.o RPC_msg_sig_post_reply.o RPC_msg_sig_post_untraced_reply.o RPC_msg_sig_post_request.o RPC_msg_sig_post_untraced_request.o RPC_exec_exec.o RPC_exec_init.o RPC_exec_setexecdata.o RPC_exec_startup_get_info.o RPC_crash_dump_task.o RPC_interrupt_operation.o RPC_file_exec.o RPC_file_chown.o RPC_file_chauthor.o RPC_file_chmod.o RPC_file_chflags.o RPC_file_utimes.o RPC_file_set_size.o RPC_file_lock.o RPC_file_lock_stat.o RPC_file_check_access.o RPC_file_notice_changes.o RPC_file_getcontrol.o RPC_file_statfs.o RPC_file_sync.o RPC_file_syncfs.o RPC_file_get_storage_info.o RPC_file_getlinknode.o RPC_file_getfh.o RPC_dir_lookup.o RPC_dir_readdir.o RPC_dir_mkdir.o RPC_dir_rmdir.o RPC_dir_unlink.o RPC_dir_link.o RPC_dir_rename.o RPC_dir_mkfile.o RPC_dir_notice_changes.o RPC_file_set_translator.o RPC_file_get_translator.o RPC_file_get_translator_cntl.o RPC_file_get_fs_options.o RPC_file_reparent.o RPC_fsys_startup.o RPC_fsys_goaway.o RPC_fsys_getroot.o RPC_fsys_getfile.o RPC_fsys_syncfs.o RPC_fsys_set_options.o RPC_fsys_getpriv.o RPC_fsys_init.o RPC_fsys_forward.o RPC_fsys_get_options.o RPC_io_write.o RPC_io_read.o RPC_io_seek.o RPC_io_readable.o RPC_io_set_all_openmodes.o RPC_io_get_openmodes.o RPC_io_set_some_openmodes.o RPC_io_clear_some_openmodes.o RPC_io_async.o RPC_io_mod_owner.o RPC_io_get_owner.o RPC_io_get_icky_async_id.o RPC_io_select.o RPC_io_stat.o RPC_io_reauthenticate.o RPC_io_restrict_auth.o RPC_io_duplicate.o RPC_io_server_version.o RPC_io_map.o RPC_io_map_cntl.o RPC_io_get_conch.o RPC_io_release_conch.o RPC_io_eofnotify.o RPC_io_prenotify.o RPC_io_postnotify.o RPC_io_readnotify.o RPC_io_readsleep.o RPC_io_sigio.o RPC_io_pathconf.o RPC_io_identity.o RPC_io_revoke.o RPC_io_select_timeout.o RPC_io_write_reply.o RPC_io_read_reply.o RPC_io_seek_reply.o RPC_io_readable_reply.o RPC_io_set_all_openmodes_reply.o RPC_io_get_openmodes_reply.o RPC_io_set_some_openmodes_reply.o RPC_io_clear_some_openmodes_reply.o RPC_io_async_reply.o RPC_io_mod_owner_reply.o RPC_io_get_owner_reply.o RPC_io_get_icky_async_id_reply.o RPC_io_select_reply.o RPC_io_stat_reply.o RPC_io_restrict_auth_reply.o RPC_io_duplicate_reply.o RPC_io_server_version_reply.o RPC_io_map_reply.o RPC_io_map_cntl_reply.o RPC_io_get_conch_reply.o RPC_io_release_conch_reply.o RPC_io_eofnotify_reply.o RPC_io_prenotify_reply.o RPC_io_postnotify_reply.o RPC_io_readnotify_reply.o RPC_io_readsleep_reply.o RPC_io_sigio_reply.o RPC_io_pathconf_reply.o RPC_io_identity_reply.o RPC_io_revoke_reply.o RPC_io_select_timeout_reply.o RPC_io_write_request.o RPC_io_read_request.o RPC_io_seek_request.o RPC_io_readable_request.o RPC_io_set_all_openmodes_request.o RPC_io_get_openmodes_request.o RPC_io_set_some_openmodes_request.o RPC_io_clear_some_openmodes_request.o RPC_io_async_request.o RPC_io_mod_owner_request.o RPC_io_get_owner_request.o RPC_io_get_icky_async_id_request.o RPC_io_select_request.o RPC_io_stat_request.o RPC_io_restrict_auth_request.o RPC_io_duplicate_request.o RPC_io_server_version_request.o RPC_io_map_request.o RPC_io_map_cntl_request.o RPC_io_get_conch_request.o RPC_io_release_conch_request.o RPC_io_eofnotify_request.o RPC_io_prenotify_request.o RPC_io_postnotify_request.o RPC_io_readnotify_request.o RPC_io_readsleep_request.o RPC_io_sigio_request.o RPC_io_pathconf_request.o RPC_io_identity_request.o RPC_io_revoke_request.o RPC_io_select_timeout_request.o RPC_term_getctty.o RPC_term_open_ctty.o RPC_term_set_nodename.o RPC_term_get_nodename.o RPC_term_set_filenode.o RPC_term_get_bottom_type.o RPC_term_on_machdev.o RPC_term_on_hurddev.o RPC_term_on_pty.o RPC_termctty_open_terminal.o RPC_term_get_peername.o RPC_tioctl_tiocmodg.o RPC_tioctl_tiocmods.o RPC_tioctl_tiocexcl.o RPC_tioctl_tiocnxcl.o RPC_tioctl_tiocflush.o RPC_tioctl_tiocgeta.o RPC_tioctl_tiocseta.o RPC_tioctl_tiocsetaw.o RPC_tioctl_tiocsetaf.o RPC_tioctl_tiocgetd.o RPC_tioctl_tiocsetd.o RPC_tioctl_tiocdrain.o RPC_tioctl_tiocsig.o RPC_tioctl_tiocext.o RPC_tioctl_tiocucntl.o RPC_tioctl_tiocswinsz.o RPC_tioctl_tiocgwinsz.o RPC_tioctl_tiocremote.o RPC_tioctl_tiocmget.o RPC_tioctl_tiocmbic.o RPC_tioctl_tiocmbis.o RPC_tioctl_tiocmset.o RPC_tioctl_tiocstart.o RPC_tioctl_tiocstop.o RPC_tioctl_tiocpkt.o RPC_tioctl_tiocsti.o RPC_tioctl_tiocoutq.o RPC_tioctl_tiocspgrp.o RPC_tioctl_tiocgpgrp.o RPC_tioctl_tioccdtr.o RPC_tioctl_tiocsdtr.o RPC_tioctl_tioccbrk.o RPC_tioctl_tiocsbrk.o RPC_socket_create.o RPC_socket_listen.o RPC_socket_accept.o RPC_socket_connect.o RPC_socket_bind.o RPC_socket_name.o RPC_socket_peername.o RPC_socket_connect2.o RPC_socket_create_address.o RPC_socket_fabricate_address.o RPC_socket_whatis_address.o RPC_socket_shutdown.o RPC_socket_getopt.o RPC_socket_setopt.o RPC_socket_send.o RPC_socket_recv.o RPC_ifsock_getsockaddr.o RPC_login_message_user.o RPC_login_get_location.o RPC_login_get_idle_time.o RPC_login_get_input_devices.o RPC_login_get_login_collection.o RPC_password_check_user.o RPC_password_check_group.o RPC_pfinet_siocgifconf.o hurd/msg_server.o faultexc_server.o RPC_auth_getids.os RPC_auth_makeauth.os RPC_auth_user_authenticate.os RPC_auth_server_authenticate.os RPC_startup_essential_task.os RPC_startup_request_notification.os RPC_startup_reboot.os RPC_startup_procinit.os RPC_startup_authinit.os RPC_proc_getprivports.os RPC_proc_getallpids.os RPC_proc_setexecdata.os RPC_proc_getexecdata.os RPC_proc_execdata_notify.os RPC_proc_uname.os RPC_proc_register_version.os RPC_proc_reauthenticate.os RPC_proc_child.os RPC_proc_setmsgport.os RPC_proc_reassign.os RPC_proc_setowner.os RPC_proc_getpids.os RPC_proc_set_arg_locations.os RPC_proc_get_arg_locations.os RPC_proc_getmsgport.os RPC_proc_wait.os RPC_proc_dostop.os RPC_proc_handle_exceptions.os RPC_proc_mark_stop.os RPC_proc_mark_cont.os RPC_proc_mark_exit.os RPC_proc_mark_exec.os RPC_proc_mark_traced.os RPC_proc_mod_stopchild.os RPC_proc_pid2task.os RPC_proc_task2pid.os RPC_proc_task2proc.os RPC_proc_proc2task.os RPC_proc_pid2proc.os RPC_proc_getprocinfo.os RPC_proc_getprocargs.os RPC_proc_getprocenv.os RPC_proc_make_login_coll.os RPC_proc_getloginid.os RPC_proc_getloginpids.os RPC_proc_setlogin.os RPC_proc_getlogin.os RPC_proc_setsid.os RPC_proc_getsid.os RPC_proc_getsessionpgids.os RPC_proc_getsessionpids.os RPC_proc_getsidport.os RPC_proc_setpgrp.os RPC_proc_getpgrp.os RPC_proc_getpgrppids.os RPC_proc_get_tty.os RPC_proc_getnports.os RPC_proc_getprivports_request.os RPC_proc_getallpids_request.os RPC_proc_setexecdata_request.os RPC_proc_getexecdata_request.os RPC_proc_execdata_notify_request.os RPC_proc_uname_request.os RPC_proc_register_version_request.os RPC_proc_reauthenticate_request.os RPC_proc_child_request.os RPC_proc_setmsgport_request.os RPC_proc_reassign_request.os RPC_proc_setowner_request.os RPC_proc_getpids_request.os RPC_proc_set_arg_locations_request.os RPC_proc_get_arg_locations_request.os RPC_proc_getmsgport_request.os RPC_proc_wait_request.os RPC_proc_dostop_request.os RPC_proc_handle_exceptions_request.os RPC_proc_mark_stop_request.os RPC_proc_mark_cont_request.os RPC_proc_mark_exit_request.os RPC_proc_mark_exec_request.os RPC_proc_mark_traced_request.os RPC_proc_mod_stopchild_request.os RPC_proc_pid2task_request.os RPC_proc_task2pid_request.os RPC_proc_task2proc_request.os RPC_proc_proc2task_request.os RPC_proc_pid2proc_request.os RPC_proc_getprocinfo_request.os RPC_proc_getprocargs_request.os RPC_proc_getprocenv_request.os RPC_proc_make_login_coll_request.os RPC_proc_getloginid_request.os RPC_proc_getloginpids_request.os RPC_proc_setlogin_request.os RPC_proc_getlogin_request.os RPC_proc_setsid_request.os RPC_proc_getsid_request.os RPC_proc_getsessionpgids_request.os RPC_proc_getsessionpids_request.os RPC_proc_getsidport_request.os RPC_proc_setpgrp_request.os RPC_proc_getpgrp_request.os RPC_proc_getpgrppids_request.os RPC_proc_get_tty_request.os RPC_proc_getnports_request.os RPC_msg_sig_post.os RPC_msg_proc_newids.os RPC_msg_add_auth.os RPC_msg_del_auth.os RPC_msg_get_init_port.os RPC_msg_set_init_port.os RPC_msg_get_init_ports.os RPC_msg_set_init_ports.os RPC_msg_get_init_int.os RPC_msg_set_init_int.os RPC_msg_get_init_ints.os RPC_msg_set_init_ints.os RPC_msg_get_dtable.os RPC_msg_set_dtable.os RPC_msg_get_fd.os RPC_msg_set_fd.os RPC_msg_get_environment.os RPC_msg_set_environment.os RPC_msg_get_env_variable.os RPC_msg_set_env_variable.os RPC_msg_sig_post_untraced.os RPC_msg_report_wait.os RPC_msg_describe_ports.os RPC_msg_sig_post_reply.os RPC_msg_sig_post_untraced_reply.os RPC_msg_sig_post_request.os RPC_msg_sig_post_untraced_request.os RPC_exec_exec.os RPC_exec_init.os RPC_exec_setexecdata.os RPC_exec_startup_get_info.os RPC_crash_dump_task.os RPC_interrupt_operation.os RPC_file_exec.os RPC_file_chown.os RPC_file_chauthor.os RPC_file_chmod.os RPC_file_chflags.os RPC_file_utimes.os RPC_file_set_size.os RPC_file_lock.os RPC_file_lock_stat.os RPC_file_check_access.os RPC_file_notice_changes.os RPC_file_getcontrol.os RPC_file_statfs.os RPC_file_sync.os RPC_file_syncfs.os RPC_file_get_storage_info.os RPC_file_getlinknode.os RPC_file_getfh.os RPC_dir_lookup.os RPC_dir_readdir.os RPC_dir_mkdir.os RPC_dir_rmdir.os RPC_dir_unlink.os RPC_dir_link.os RPC_dir_rename.os RPC_dir_mkfile.os RPC_dir_notice_changes.os RPC_file_set_translator.os RPC_file_get_translator.os RPC_file_get_translator_cntl.os RPC_file_get_fs_options.os RPC_file_reparent.os RPC_fsys_startup.os RPC_fsys_goaway.os RPC_fsys_getroot.os RPC_fsys_getfile.os RPC_fsys_syncfs.os RPC_fsys_set_options.os RPC_fsys_getpriv.os RPC_fsys_init.os RPC_fsys_forward.os RPC_fsys_get_options.os RPC_io_write.os RPC_io_read.os RPC_io_seek.os RPC_io_readable.os RPC_io_set_all_openmodes.os RPC_io_get_openmodes.os RPC_io_set_some_openmodes.os RPC_io_clear_some_openmodes.os RPC_io_async.os RPC_io_mod_owner.os RPC_io_get_owner.os RPC_io_get_icky_async_id.os RPC_io_select.os RPC_io_stat.os RPC_io_reauthenticate.os RPC_io_restrict_auth.os RPC_io_duplicate.os RPC_io_server_version.os RPC_io_map.os RPC_io_map_cntl.os RPC_io_get_conch.os RPC_io_release_conch.os RPC_io_eofnotify.os RPC_io_prenotify.os RPC_io_postnotify.os RPC_io_readnotify.os RPC_io_readsleep.os RPC_io_sigio.os RPC_io_pathconf.os RPC_io_identity.os RPC_io_revoke.os RPC_io_select_timeout.os RPC_io_write_reply.os RPC_io_read_reply.os RPC_io_seek_reply.os RPC_io_readable_reply.os RPC_io_set_all_openmodes_reply.os RPC_io_get_openmodes_reply.os RPC_io_set_some_openmodes_reply.os RPC_io_clear_some_openmodes_reply.os RPC_io_async_reply.os RPC_io_mod_owner_reply.os RPC_io_get_owner_reply.os RPC_io_get_icky_async_id_reply.os RPC_io_select_reply.os RPC_io_stat_reply.os RPC_io_restrict_auth_reply.os RPC_io_duplicate_reply.os RPC_io_server_version_reply.os RPC_io_map_reply.os RPC_io_map_cntl_reply.os RPC_io_get_conch_reply.os RPC_io_release_conch_reply.os RPC_io_eofnotify_reply.os RPC_io_prenotify_reply.os RPC_io_postnotify_reply.os RPC_io_readnotify_reply.os RPC_io_readsleep_reply.os RPC_io_sigio_reply.os RPC_io_pathconf_reply.os RPC_io_identity_reply.os RPC_io_revoke_reply.os RPC_io_select_timeout_reply.os RPC_io_write_request.os RPC_io_read_request.os RPC_io_seek_request.os RPC_io_readable_request.os RPC_io_set_all_openmodes_request.os RPC_io_get_openmodes_request.os RPC_io_set_some_openmodes_request.os RPC_io_clear_some_openmodes_request.os RPC_io_async_request.os RPC_io_mod_owner_request.os RPC_io_get_owner_request.os RPC_io_get_icky_async_id_request.os RPC_io_select_request.os RPC_io_stat_request.os RPC_io_restrict_auth_request.os RPC_io_duplicate_request.os RPC_io_server_version_request.os RPC_io_map_request.os RPC_io_map_cntl_request.os RPC_io_get_conch_request.os RPC_io_release_conch_request.os RPC_io_eofnotify_request.os RPC_io_prenotify_request.os RPC_io_postnotify_request.os RPC_io_readnotify_request.os RPC_io_readsleep_request.os RPC_io_sigio_request.os RPC_io_pathconf_request.os RPC_io_identity_request.os RPC_io_revoke_request.os RPC_io_select_timeout_request.os RPC_term_getctty.os RPC_term_open_ctty.os RPC_term_set_nodename.os RPC_term_get_nodename.os RPC_term_set_filenode.os RPC_term_get_bottom_type.os RPC_term_on_machdev.os RPC_term_on_hurddev.os RPC_term_on_pty.os RPC_termctty_open_terminal.os RPC_term_get_peername.os RPC_tioctl_tiocmodg.os RPC_tioctl_tiocmods.os RPC_tioctl_tiocexcl.os RPC_tioctl_tiocnxcl.os RPC_tioctl_tiocflush.os RPC_tioctl_tiocgeta.os RPC_tioctl_tiocseta.os RPC_tioctl_tiocsetaw.os RPC_tioctl_tiocsetaf.os RPC_tioctl_tiocgetd.os RPC_tioctl_tiocsetd.os RPC_tioctl_tiocdrain.os RPC_tioctl_tiocsig.os RPC_tioctl_tiocext.os RPC_tioctl_tiocucntl.os RPC_tioctl_tiocswinsz.os RPC_tioctl_tiocgwinsz.os RPC_tioctl_tiocremote.os RPC_tioctl_tiocmget.os RPC_tioctl_tiocmbic.os RPC_tioctl_tiocmbis.os RPC_tioctl_tiocmset.os RPC_tioctl_tiocstart.os RPC_tioctl_tiocstop.os RPC_tioctl_tiocpkt.os RPC_tioctl_tiocsti.os RPC_tioctl_tiocoutq.os RPC_tioctl_tiocspgrp.os RPC_tioctl_tiocgpgrp.os RPC_tioctl_tioccdtr.os RPC_tioctl_tiocsdtr.os RPC_tioctl_tioccbrk.os RPC_tioctl_tiocsbrk.os RPC_socket_create.os RPC_socket_listen.os RPC_socket_accept.os RPC_socket_connect.os RPC_socket_bind.os RPC_socket_name.os RPC_socket_peername.os RPC_socket_connect2.os RPC_socket_create_address.os RPC_socket_fabricate_address.os RPC_socket_whatis_address.os RPC_socket_shutdown.os RPC_socket_getopt.os RPC_socket_setopt.os RPC_socket_send.os RPC_socket_recv.os RPC_ifsock_getsockaddr.os RPC_login_message_user.os RPC_login_get_location.os RPC_login_get_idle_time.os RPC_login_get_input_devices.os RPC_login_get_login_collection.os RPC_password_check_user.os RPC_password_check_group.os RPC_pfinet_siocgifconf.os hurd/msg_server.os faultexc_server.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/hurd/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/hurd/stubsT [...]/tschwinge/Roger_Whittaker.build/hurd/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/hurd'
make  subdir=csu -C csu ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/csu'
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/csu/crt1.o [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/crt1.o
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/csu/gcrt1.o [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gcrt1.o
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/csu/Mcrt1.o [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/Mcrt1.o
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/csu/Scrt1.o [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/Scrt1.o
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/csu/crt0.o [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/crt0.o
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/csu/gcrt0.o [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gcrt0.o
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/csu/crti.o [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/crti.o
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/csu/crtn.o [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/crtn.o
(cd [...]/tschwinge/Roger_Whittaker.build/csu/.; objdump -h init-first.o libc-start.o sysdep.o version.o check_fds.o libc-tls.o elf-init.o dso_handle.o errno.o init-first.os libc-start.os sysdep.os version.os check_fds.os dso_handle.os unwind-resume.os errno.os divdi3.os elf-init.oS start.o gmon-start.o crt1.o gcrt1.o Mcrt1.o Scrt1.o crt0.o gcrt0.o crti.o crtn.o abi-note.o init.o static-start.o) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/csu/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/csu/stubsT [...]/tschwinge/Roger_Whittaker.build/csu/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/csu'
make  subdir=iconv -C iconv ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/iconv'
/usr/bin/install -c -m 644 iconv.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/iconv.h
/usr/bin/install -c -m 644 gconv.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gconv.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconv/iconvconfig [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin/iconvconfig.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin/iconvconfig.new [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin/iconvconfig
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/bin
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/bin
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconv/iconv_prog [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/iconv.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/iconv.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/iconv
(cd [...]/tschwinge/Roger_Whittaker.build/iconv/.; objdump -h iconv_open.o iconv.o iconv_close.o gconv_open.o gconv.o gconv_close.o gconv_db.o gconv_conf.o gconv_builtin.o gconv_simple.o gconv_trans.o gconv_cache.o gconv_dl.o iconv_open.os iconv.os iconv_close.os gconv_open.os gconv.os gconv_close.os gconv_db.os gconv_conf.os gconv_builtin.os gconv_simple.os gconv_trans.os gconv_cache.os gconv_dl.os iconv_charmap.o charmap.o charmap-dir.o linereader.o dummy-repertoire.o simple-hash.o xstrdup.o xmalloc.o strtab.o hash-string.o) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/iconv/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/iconv/stubsT [...]/tschwinge/Roger_Whittaker.build/iconv/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/iconv'
make  subdir=locale -C locale ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/locale'
/usr/bin/install -c -m 644 locale.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/locale.h
/usr/bin/install -c -m 644 bits/locale.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/locale.h
/usr/bin/install -c -m 644 langinfo.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/langinfo.h
/usr/bin/install -c -m 644 xlocale.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/xlocale.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/locale/libBrokenLocale.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libBrokenLocale-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libBrokenLocale-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libBrokenLocale-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libBrokenLocale-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libBrokenLocale.so.1` [...]/tschwinge/Roger_Whittaker.build.install/lib/libBrokenLocale.so.1 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libBrokenLocale.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libBrokenLocale.so.1 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libBrokenLocale.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libBrokenLocale.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libBrokenLocale.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/locale/libBrokenLocale.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libBrokenLocale.a
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/locale/localedef [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/localedef.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/localedef.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/localedef
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/locale/locale [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/locale.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/locale.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/locale
(cd [...]/tschwinge/Roger_Whittaker.build/locale/.; objdump -h setlocale.o findlocale.o loadlocale.o loadarchive.o localeconv.o nl_langinfo.o nl_langinfo_l.o mb_cur_max.o newlocale.o duplocale.o freelocale.o uselocale.o lc-ctype.o lc-messages.o lc-monetary.o lc-numeric.o lc-time.o lc-paper.o lc-name.o lc-address.o lc-telephone.o lc-measurement.o lc-identification.o lc-collate.o C-ctype.o C-messages.o C-monetary.o C-numeric.o C-time.o C-paper.o C-name.o C-address.o C-telephone.o C-measurement.o C-identification.o C-collate.o SYS_libc.o C_name.o xlocale.o localename.o global-locale.o coll-lookup.o setlocale.os findlocale.os loadlocale.os loadarchive.os localeconv.os nl_langinfo.os nl_langinfo_l.os mb_cur_max.os newlocale.os duplocale.os freelocale.os uselocale.os lc-ctype.os lc-messages.os lc-monetary.os lc-numeric.os lc-time.os lc-paper.os lc-name.os lc-address.os lc-telephone.os lc-measurement.os lc-identification.os lc-collate.os C-ctype.os C-messages.os C-monetary.os C-numeric.os C-time.os C-paper.os C-name.os C-address.os C-telephone.os C-measurement.os C-identification.os C-collate.os SYS_libc.os C_name.os xlocale.os localename.os global-locale.os coll-lookup.os localedef.o ld-ctype.o ld-messages.o ld-monetary.o ld-numeric.o ld-time.o ld-paper.o ld-name.o ld-address.o ld-telephone.o ld-measurement.o ld-identification.o ld-collate.o charmap.o linereader.o locfile.o repertoire.o locarchive.o md5.o locale.o locale-spec.o charmap-dir.o simple-hash.o xmalloc.o xstrdup.o broken_cur_max.o broken_cur_max.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/locale/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/locale/stubsT [...]/tschwinge/Roger_Whittaker.build/locale/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/locale'
make  subdir=localedata -C localedata ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/localedata'
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ANSI_X3.110-1983 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ANSI_X3.110-1983.gz
/usr/bin/install -c -m 644 charmaps/ANSI_X3.110-1983 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ANSI_X3.110-1983
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ANSI_X3.110-1983
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ANSI_X3.4-1968 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ANSI_X3.4-1968.gz
/usr/bin/install -c -m 644 charmaps/ANSI_X3.4-1968 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ANSI_X3.4-1968
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ANSI_X3.4-1968
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ARMSCII-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ARMSCII-8.gz
/usr/bin/install -c -m 644 charmaps/ARMSCII-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ARMSCII-8
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ARMSCII-8
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ASMO_449 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ASMO_449.gz
/usr/bin/install -c -m 644 charmaps/ASMO_449 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ASMO_449
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ASMO_449
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BIG5 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BIG5.gz
/usr/bin/install -c -m 644 charmaps/BIG5 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BIG5
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BIG5
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BIG5-HKSCS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BIG5-HKSCS.gz
/usr/bin/install -c -m 644 charmaps/BIG5-HKSCS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BIG5-HKSCS
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BIG5-HKSCS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BRF [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BRF.gz
/usr/bin/install -c -m 644 charmaps/BRF [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BRF
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BRF
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BS_4730 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BS_4730.gz
/usr/bin/install -c -m 644 charmaps/BS_4730 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BS_4730
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BS_4730
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BS_VIEWDATA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BS_VIEWDATA.gz
/usr/bin/install -c -m 644 charmaps/BS_VIEWDATA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BS_VIEWDATA
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/BS_VIEWDATA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP10007 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP10007.gz
/usr/bin/install -c -m 644 charmaps/CP10007 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP10007
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP10007
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1125 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1125.gz
/usr/bin/install -c -m 644 charmaps/CP1125 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1125
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1125
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1250 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1250.gz
/usr/bin/install -c -m 644 charmaps/CP1250 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1250
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1250
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1251 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1251.gz
/usr/bin/install -c -m 644 charmaps/CP1251 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1251
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1251
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1252 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1252.gz
/usr/bin/install -c -m 644 charmaps/CP1252 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1252
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1252
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1253 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1253.gz
/usr/bin/install -c -m 644 charmaps/CP1253 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1253
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1253
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1254 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1254.gz
/usr/bin/install -c -m 644 charmaps/CP1254 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1254
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1254
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1255 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1255.gz
/usr/bin/install -c -m 644 charmaps/CP1255 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1255
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1255
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1256 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1256.gz
/usr/bin/install -c -m 644 charmaps/CP1256 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1256
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1256
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1257 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1257.gz
/usr/bin/install -c -m 644 charmaps/CP1257 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1257
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1257
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1258 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1258.gz
/usr/bin/install -c -m 644 charmaps/CP1258 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1258
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP1258
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP737 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP737.gz
/usr/bin/install -c -m 644 charmaps/CP737 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP737
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP737
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP770 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP770.gz
/usr/bin/install -c -m 644 charmaps/CP770 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP770
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP770
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP771 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP771.gz
/usr/bin/install -c -m 644 charmaps/CP771 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP771
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP771
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP772 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP772.gz
/usr/bin/install -c -m 644 charmaps/CP772 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP772
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP772
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP773 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP773.gz
/usr/bin/install -c -m 644 charmaps/CP773 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP773
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP773
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP774 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP774.gz
/usr/bin/install -c -m 644 charmaps/CP774 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP774
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP774
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP775 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP775.gz
/usr/bin/install -c -m 644 charmaps/CP775 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP775
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP775
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP949 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP949.gz
/usr/bin/install -c -m 644 charmaps/CP949 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP949
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CP949
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-1.gz
/usr/bin/install -c -m 644 charmaps/CSA_Z243.4-1985-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-1
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-1
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-2.gz
/usr/bin/install -c -m 644 charmaps/CSA_Z243.4-1985-2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-2
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-2
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-GR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-GR.gz
/usr/bin/install -c -m 644 charmaps/CSA_Z243.4-1985-GR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-GR
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSA_Z243.4-1985-GR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSN_369103 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSN_369103.gz
/usr/bin/install -c -m 644 charmaps/CSN_369103 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSN_369103
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CSN_369103
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CWI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CWI.gz
/usr/bin/install -c -m 644 charmaps/CWI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CWI
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/CWI
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DEC-MCS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DEC-MCS.gz
/usr/bin/install -c -m 644 charmaps/DEC-MCS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DEC-MCS
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DEC-MCS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DIN_66003 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DIN_66003.gz
/usr/bin/install -c -m 644 charmaps/DIN_66003 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DIN_66003
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DIN_66003
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DS_2089 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DS_2089.gz
/usr/bin/install -c -m 644 charmaps/DS_2089 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DS_2089
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/DS_2089
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-AT-DE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-AT-DE.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-AT-DE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-AT-DE
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-AT-DE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-AT-DE-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-AT-DE-A.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-AT-DE-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-AT-DE-A
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-AT-DE-A
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-CA-FR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-CA-FR.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-CA-FR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-CA-FR
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-CA-FR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-DK-NO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-DK-NO.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-DK-NO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-DK-NO
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-DK-NO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-DK-NO-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-DK-NO-A.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-DK-NO-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-DK-NO-A
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-DK-NO-A
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES-A.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-ES-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES-A
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES-A
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES-S [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES-S.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-ES-S [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES-S
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-ES-S
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FI-SE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FI-SE.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-FI-SE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FI-SE
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FI-SE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FI-SE-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FI-SE-A.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-FI-SE-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FI-SE-A
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FI-SE-A
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FR.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-FR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FR
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-FR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-IS-FRISS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-IS-FRISS.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-IS-FRISS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-IS-FRISS
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-IS-FRISS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-IT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-IT.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-IT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-IT
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-IT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-PT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-PT.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-PT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-PT
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-PT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-UK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-UK.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-UK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-UK
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-UK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-US [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-US.gz
/usr/bin/install -c -m 644 charmaps/EBCDIC-US [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-US
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EBCDIC-US
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ECMA-CYRILLIC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ECMA-CYRILLIC.gz
/usr/bin/install -c -m 644 charmaps/ECMA-CYRILLIC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ECMA-CYRILLIC
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ECMA-CYRILLIC
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ES.gz
/usr/bin/install -c -m 644 charmaps/ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ES
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ES
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ES2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ES2.gz
/usr/bin/install -c -m 644 charmaps/ES2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ES2
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ES2
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JISX0213 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JISX0213.gz
/usr/bin/install -c -m 644 charmaps/EUC-JISX0213 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JISX0213
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JISX0213
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JP.gz
/usr/bin/install -c -m 644 charmaps/EUC-JP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JP
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JP
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JP-MS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JP-MS.gz
/usr/bin/install -c -m 644 charmaps/EUC-JP-MS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JP-MS
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-JP-MS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-KR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-KR.gz
/usr/bin/install -c -m 644 charmaps/EUC-KR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-KR
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-KR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-TW [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-TW.gz
/usr/bin/install -c -m 644 charmaps/EUC-TW [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-TW
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/EUC-TW
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB18030 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB18030.gz
/usr/bin/install -c -m 644 charmaps/GB18030 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB18030
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB18030
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB2312 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB2312.gz
/usr/bin/install -c -m 644 charmaps/GB2312 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB2312
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB2312
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GBK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GBK.gz
/usr/bin/install -c -m 644 charmaps/GBK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GBK
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GBK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB_1988-80 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB_1988-80.gz
/usr/bin/install -c -m 644 charmaps/GB_1988-80 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB_1988-80
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GB_1988-80
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GEORGIAN-ACADEMY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GEORGIAN-ACADEMY.gz
/usr/bin/install -c -m 644 charmaps/GEORGIAN-ACADEMY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GEORGIAN-ACADEMY
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GEORGIAN-ACADEMY
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GEORGIAN-PS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GEORGIAN-PS.gz
/usr/bin/install -c -m 644 charmaps/GEORGIAN-PS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GEORGIAN-PS
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GEORGIAN-PS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GOST_19768-74 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GOST_19768-74.gz
/usr/bin/install -c -m 644 charmaps/GOST_19768-74 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GOST_19768-74
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GOST_19768-74
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK-CCITT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK-CCITT.gz
/usr/bin/install -c -m 644 charmaps/GREEK-CCITT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK-CCITT
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK-CCITT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK7 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK7.gz
/usr/bin/install -c -m 644 charmaps/GREEK7 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK7
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK7
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK7-OLD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK7-OLD.gz
/usr/bin/install -c -m 644 charmaps/GREEK7-OLD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK7-OLD
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/GREEK7-OLD
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-GREEK8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-GREEK8.gz
/usr/bin/install -c -m 644 charmaps/HP-GREEK8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-GREEK8
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-GREEK8
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-ROMAN8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-ROMAN8.gz
/usr/bin/install -c -m 644 charmaps/HP-ROMAN8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-ROMAN8
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-ROMAN8
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-ROMAN9 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-ROMAN9.gz
/usr/bin/install -c -m 644 charmaps/HP-ROMAN9 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-ROMAN9
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-ROMAN9
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-THAI8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-THAI8.gz
/usr/bin/install -c -m 644 charmaps/HP-THAI8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-THAI8
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-THAI8
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-TURKISH8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-TURKISH8.gz
/usr/bin/install -c -m 644 charmaps/HP-TURKISH8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-TURKISH8
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/HP-TURKISH8
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM037 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM037.gz
/usr/bin/install -c -m 644 charmaps/IBM037 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM037
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM037
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM038 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM038.gz
/usr/bin/install -c -m 644 charmaps/IBM038 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM038
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM038
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1004 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1004.gz
/usr/bin/install -c -m 644 charmaps/IBM1004 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1004
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1004
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1026 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1026.gz
/usr/bin/install -c -m 644 charmaps/IBM1026 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1026
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1026
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1047 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1047.gz
/usr/bin/install -c -m 644 charmaps/IBM1047 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1047
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1047
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1124 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1124.gz
/usr/bin/install -c -m 644 charmaps/IBM1124 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1124
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1124
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1129 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1129.gz
/usr/bin/install -c -m 644 charmaps/IBM1129 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1129
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1129
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1132 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1132.gz
/usr/bin/install -c -m 644 charmaps/IBM1132 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1132
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1132
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1133 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1133.gz
/usr/bin/install -c -m 644 charmaps/IBM1133 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1133
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1133
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1160 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1160.gz
/usr/bin/install -c -m 644 charmaps/IBM1160 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1160
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1160
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1161 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1161.gz
/usr/bin/install -c -m 644 charmaps/IBM1161 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1161
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1161
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1162 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1162.gz
/usr/bin/install -c -m 644 charmaps/IBM1162 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1162
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1162
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1163 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1163.gz
/usr/bin/install -c -m 644 charmaps/IBM1163 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1163
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1163
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1164 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1164.gz
/usr/bin/install -c -m 644 charmaps/IBM1164 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1164
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM1164
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM256 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM256.gz
/usr/bin/install -c -m 644 charmaps/IBM256 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM256
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM256
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM273 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM273.gz
/usr/bin/install -c -m 644 charmaps/IBM273 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM273
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM273
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM274 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM274.gz
/usr/bin/install -c -m 644 charmaps/IBM274 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM274
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM274
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM275 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM275.gz
/usr/bin/install -c -m 644 charmaps/IBM275 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM275
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM275
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM277 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM277.gz
/usr/bin/install -c -m 644 charmaps/IBM277 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM277
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM277
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM278 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM278.gz
/usr/bin/install -c -m 644 charmaps/IBM278 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM278
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM278
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM280 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM280.gz
/usr/bin/install -c -m 644 charmaps/IBM280 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM280
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM280
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM281 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM281.gz
/usr/bin/install -c -m 644 charmaps/IBM281 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM281
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM281
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM284 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM284.gz
/usr/bin/install -c -m 644 charmaps/IBM284 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM284
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM284
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM285 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM285.gz
/usr/bin/install -c -m 644 charmaps/IBM285 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM285
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM285
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM290 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM290.gz
/usr/bin/install -c -m 644 charmaps/IBM290 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM290
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM290
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM297 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM297.gz
/usr/bin/install -c -m 644 charmaps/IBM297 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM297
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM297
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM420 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM420.gz
/usr/bin/install -c -m 644 charmaps/IBM420 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM420
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM420
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM423 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM423.gz
/usr/bin/install -c -m 644 charmaps/IBM423 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM423
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM423
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM424 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM424.gz
/usr/bin/install -c -m 644 charmaps/IBM424 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM424
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM424
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM437 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM437.gz
/usr/bin/install -c -m 644 charmaps/IBM437 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM437
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM437
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM500 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM500.gz
/usr/bin/install -c -m 644 charmaps/IBM500 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM500
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM500
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM850 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM850.gz
/usr/bin/install -c -m 644 charmaps/IBM850 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM850
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM850
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM851 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM851.gz
/usr/bin/install -c -m 644 charmaps/IBM851 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM851
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM851
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM852 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM852.gz
/usr/bin/install -c -m 644 charmaps/IBM852 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM852
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM852
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM855 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM855.gz
/usr/bin/install -c -m 644 charmaps/IBM855 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM855
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM855
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM856 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM856.gz
/usr/bin/install -c -m 644 charmaps/IBM856 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM856
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM856
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM857 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM857.gz
/usr/bin/install -c -m 644 charmaps/IBM857 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM857
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM857
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM860 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM860.gz
/usr/bin/install -c -m 644 charmaps/IBM860 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM860
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM860
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM861 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM861.gz
/usr/bin/install -c -m 644 charmaps/IBM861 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM861
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM861
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM862 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM862.gz
/usr/bin/install -c -m 644 charmaps/IBM862 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM862
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM862
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM863 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM863.gz
/usr/bin/install -c -m 644 charmaps/IBM863 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM863
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM863
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM864 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM864.gz
/usr/bin/install -c -m 644 charmaps/IBM864 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM864
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM864
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM865 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM865.gz
/usr/bin/install -c -m 644 charmaps/IBM865 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM865
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM865
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM866 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM866.gz
/usr/bin/install -c -m 644 charmaps/IBM866 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM866
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM866
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM866NAV [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM866NAV.gz
/usr/bin/install -c -m 644 charmaps/IBM866NAV [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM866NAV
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM866NAV
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM868 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM868.gz
/usr/bin/install -c -m 644 charmaps/IBM868 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM868
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM868
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM869 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM869.gz
/usr/bin/install -c -m 644 charmaps/IBM869 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM869
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM869
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM870 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM870.gz
/usr/bin/install -c -m 644 charmaps/IBM870 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM870
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM870
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM871 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM871.gz
/usr/bin/install -c -m 644 charmaps/IBM871 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM871
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM871
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM874 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM874.gz
/usr/bin/install -c -m 644 charmaps/IBM874 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM874
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM874
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM875 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM875.gz
/usr/bin/install -c -m 644 charmaps/IBM875 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM875
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM875
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM880 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM880.gz
/usr/bin/install -c -m 644 charmaps/IBM880 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM880
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM880
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM891 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM891.gz
/usr/bin/install -c -m 644 charmaps/IBM891 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM891
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM891
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM903 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM903.gz
/usr/bin/install -c -m 644 charmaps/IBM903 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM903
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM903
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM904 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM904.gz
/usr/bin/install -c -m 644 charmaps/IBM904 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM904
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM904
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM905 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM905.gz
/usr/bin/install -c -m 644 charmaps/IBM905 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM905
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM905
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM918 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM918.gz
/usr/bin/install -c -m 644 charmaps/IBM918 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM918
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM918
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM922 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM922.gz
/usr/bin/install -c -m 644 charmaps/IBM922 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM922
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IBM922
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IEC_P27-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IEC_P27-1.gz
/usr/bin/install -c -m 644 charmaps/IEC_P27-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IEC_P27-1
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IEC_P27-1
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS.gz
/usr/bin/install -c -m 644 charmaps/INIS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS-8.gz
/usr/bin/install -c -m 644 charmaps/INIS-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS-8
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS-8
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS-CYRILLIC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS-CYRILLIC.gz
/usr/bin/install -c -m 644 charmaps/INIS-CYRILLIC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS-CYRILLIC
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INIS-CYRILLIC
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INVARIANT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INVARIANT.gz
/usr/bin/install -c -m 644 charmaps/INVARIANT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INVARIANT
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/INVARIANT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISIRI-3342 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISIRI-3342.gz
/usr/bin/install -c -m 644 charmaps/ISIRI-3342 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISIRI-3342
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISIRI-3342
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-1.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-1
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-1
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-10 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-10.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-10 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-10
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-10
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-11 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-11.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-11 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-11
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-11
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-13 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-13.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-13 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-13
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-13
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-14 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-14.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-14 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-14
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-14
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-15 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-15.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-15 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-15
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-15
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-16 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-16.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-16 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-16
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-16
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-2.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-2
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-2
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-3 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-3.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-3 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-3
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-3
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-4 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-4.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-4 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-4
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-4
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-5 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-5.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-5 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-5
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-5
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-6 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-6.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-6 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-6
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-6
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-7 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-7.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-7 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-7
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-7
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-8.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-8
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-8
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-9 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-9.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-9 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-9
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-9
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-9E [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-9E.gz
/usr/bin/install -c -m 644 charmaps/ISO-8859-9E [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-9E
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-8859-9E
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-197 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-197.gz
/usr/bin/install -c -m 644 charmaps/ISO-IR-197 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-197
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-197
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-209 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-209.gz
/usr/bin/install -c -m 644 charmaps/ISO-IR-209 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-209
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-209
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-90 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-90.gz
/usr/bin/install -c -m 644 charmaps/ISO-IR-90 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-90
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO-IR-90
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_10367-BOX [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_10367-BOX.gz
/usr/bin/install -c -m 644 charmaps/ISO_10367-BOX [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_10367-BOX
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_10367-BOX
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_10646 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_10646.gz
/usr/bin/install -c -m 644 charmaps/ISO_10646 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_10646
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_10646
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_11548-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_11548-1.gz
/usr/bin/install -c -m 644 charmaps/ISO_11548-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_11548-1
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_11548-1
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_2033-1983 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_2033-1983.gz
/usr/bin/install -c -m 644 charmaps/ISO_2033-1983 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_2033-1983
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_2033-1983
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5427 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5427.gz
/usr/bin/install -c -m 644 charmaps/ISO_5427 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5427
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5427
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5427-EXT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5427-EXT.gz
/usr/bin/install -c -m 644 charmaps/ISO_5427-EXT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5427-EXT
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5427-EXT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5428 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5428.gz
/usr/bin/install -c -m 644 charmaps/ISO_5428 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5428
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_5428
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_646.BASIC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_646.BASIC.gz
/usr/bin/install -c -m 644 charmaps/ISO_646.BASIC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_646.BASIC
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_646.BASIC
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_646.IRV [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_646.IRV.gz
/usr/bin/install -c -m 644 charmaps/ISO_646.IRV [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_646.IRV
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_646.IRV
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937.gz
/usr/bin/install -c -m 644 charmaps/ISO_6937 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937-2-25 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937-2-25.gz
/usr/bin/install -c -m 644 charmaps/ISO_6937-2-25 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937-2-25
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937-2-25
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937-2-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937-2-ADD.gz
/usr/bin/install -c -m 644 charmaps/ISO_6937-2-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937-2-ADD
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_6937-2-ADD
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_8859-1,GL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_8859-1,GL.gz
/usr/bin/install -c -m 644 charmaps/ISO_8859-1,GL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_8859-1,GL
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_8859-1,GL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_8859-SUPP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_8859-SUPP.gz
/usr/bin/install -c -m 644 charmaps/ISO_8859-SUPP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_8859-SUPP
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/ISO_8859-SUPP
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IT.gz
/usr/bin/install -c -m 644 charmaps/IT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IT
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/IT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6220-1969-JP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6220-1969-JP.gz
/usr/bin/install -c -m 644 charmaps/JIS_C6220-1969-JP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6220-1969-JP
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6220-1969-JP
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6220-1969-RO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6220-1969-RO.gz
/usr/bin/install -c -m 644 charmaps/JIS_C6220-1969-RO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6220-1969-RO
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6220-1969-RO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-A.gz
/usr/bin/install -c -m 644 charmaps/JIS_C6229-1984-A [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-A
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-A
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-B [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-B.gz
/usr/bin/install -c -m 644 charmaps/JIS_C6229-1984-B [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-B
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-B
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-B-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-B-ADD.gz
/usr/bin/install -c -m 644 charmaps/JIS_C6229-1984-B-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-B-ADD
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-B-ADD
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-HAND [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-HAND.gz
/usr/bin/install -c -m 644 charmaps/JIS_C6229-1984-HAND [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-HAND
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-HAND
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-HAND-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-HAND-ADD.gz
/usr/bin/install -c -m 644 charmaps/JIS_C6229-1984-HAND-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-HAND-ADD
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-HAND-ADD
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-KANA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-KANA.gz
/usr/bin/install -c -m 644 charmaps/JIS_C6229-1984-KANA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-KANA
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_C6229-1984-KANA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_X0201 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_X0201.gz
/usr/bin/install -c -m 644 charmaps/JIS_X0201 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_X0201
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JIS_X0201
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JOHAB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JOHAB.gz
/usr/bin/install -c -m 644 charmaps/JOHAB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JOHAB
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JOHAB
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.002 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.002.gz
/usr/bin/install -c -m 644 charmaps/JUS_I.B1.002 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.002
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.002
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.003-MAC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.003-MAC.gz
/usr/bin/install -c -m 644 charmaps/JUS_I.B1.003-MAC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.003-MAC
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.003-MAC
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.003-SERB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.003-SERB.gz
/usr/bin/install -c -m 644 charmaps/JUS_I.B1.003-SERB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.003-SERB
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/JUS_I.B1.003-SERB
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI-8.gz
/usr/bin/install -c -m 644 charmaps/KOI-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI-8
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI-8
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-R [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-R.gz
/usr/bin/install -c -m 644 charmaps/KOI8-R [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-R
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-R
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-RU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-RU.gz
/usr/bin/install -c -m 644 charmaps/KOI8-RU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-RU
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-RU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-T [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-T.gz
/usr/bin/install -c -m 644 charmaps/KOI8-T [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-T
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-T
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-U [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-U.gz
/usr/bin/install -c -m 644 charmaps/KOI8-U [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-U
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KOI8-U
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KSC5636 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KSC5636.gz
/usr/bin/install -c -m 644 charmaps/KSC5636 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KSC5636
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/KSC5636
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/LATIN-GREEK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/LATIN-GREEK.gz
/usr/bin/install -c -m 644 charmaps/LATIN-GREEK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/LATIN-GREEK
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/LATIN-GREEK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/LATIN-GREEK-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/LATIN-GREEK-1.gz
/usr/bin/install -c -m 644 charmaps/LATIN-GREEK-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/LATIN-GREEK-1
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/LATIN-GREEK-1
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-CENTRALEUROPE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-CENTRALEUROPE.gz
/usr/bin/install -c -m 644 charmaps/MAC-CENTRALEUROPE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-CENTRALEUROPE
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-CENTRALEUROPE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-CYRILLIC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-CYRILLIC.gz
/usr/bin/install -c -m 644 charmaps/MAC-CYRILLIC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-CYRILLIC
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-CYRILLIC
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-IS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-IS.gz
/usr/bin/install -c -m 644 charmaps/MAC-IS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-IS
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-IS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-SAMI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-SAMI.gz
/usr/bin/install -c -m 644 charmaps/MAC-SAMI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-SAMI
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-SAMI
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-UK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-UK.gz
/usr/bin/install -c -m 644 charmaps/MAC-UK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-UK
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MAC-UK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MACINTOSH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MACINTOSH.gz
/usr/bin/install -c -m 644 charmaps/MACINTOSH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MACINTOSH
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MACINTOSH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MIK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MIK.gz
/usr/bin/install -c -m 644 charmaps/MIK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MIK
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MIK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MSZ_7795.3 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MSZ_7795.3.gz
/usr/bin/install -c -m 644 charmaps/MSZ_7795.3 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MSZ_7795.3
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/MSZ_7795.3
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-DANO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-DANO.gz
/usr/bin/install -c -m 644 charmaps/NATS-DANO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-DANO
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-DANO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-DANO-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-DANO-ADD.gz
/usr/bin/install -c -m 644 charmaps/NATS-DANO-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-DANO-ADD
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-DANO-ADD
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-SEFI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-SEFI.gz
/usr/bin/install -c -m 644 charmaps/NATS-SEFI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-SEFI
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-SEFI
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-SEFI-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-SEFI-ADD.gz
/usr/bin/install -c -m 644 charmaps/NATS-SEFI-ADD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-SEFI-ADD
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NATS-SEFI-ADD
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NC_NC00-10 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NC_NC00-10.gz
/usr/bin/install -c -m 644 charmaps/NC_NC00-10 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NC_NC00-10
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NC_NC00-10
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NEXTSTEP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NEXTSTEP.gz
/usr/bin/install -c -m 644 charmaps/NEXTSTEP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NEXTSTEP
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NEXTSTEP
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NF_Z_62-010 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NF_Z_62-010.gz
/usr/bin/install -c -m 644 charmaps/NF_Z_62-010 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NF_Z_62-010
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NF_Z_62-010
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NF_Z_62-010_1973 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NF_Z_62-010_1973.gz
/usr/bin/install -c -m 644 charmaps/NF_Z_62-010_1973 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NF_Z_62-010_1973
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NF_Z_62-010_1973
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NS_4551-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NS_4551-1.gz
/usr/bin/install -c -m 644 charmaps/NS_4551-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NS_4551-1
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NS_4551-1
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NS_4551-2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NS_4551-2.gz
/usr/bin/install -c -m 644 charmaps/NS_4551-2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NS_4551-2
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/NS_4551-2
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT.gz
/usr/bin/install -c -m 644 charmaps/PT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT154 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT154.gz
/usr/bin/install -c -m 644 charmaps/PT154 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT154
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT154
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT2.gz
/usr/bin/install -c -m 644 charmaps/PT2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT2
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/PT2
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/RK1048 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/RK1048.gz
/usr/bin/install -c -m 644 charmaps/RK1048 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/RK1048
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/RK1048
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SAMI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SAMI.gz
/usr/bin/install -c -m 644 charmaps/SAMI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SAMI
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SAMI
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SAMI-WS2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SAMI-WS2.gz
/usr/bin/install -c -m 644 charmaps/SAMI-WS2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SAMI-WS2
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SAMI-WS2
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SEN_850200_B [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SEN_850200_B.gz
/usr/bin/install -c -m 644 charmaps/SEN_850200_B [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SEN_850200_B
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SEN_850200_B
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SEN_850200_C [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SEN_850200_C.gz
/usr/bin/install -c -m 644 charmaps/SEN_850200_C [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SEN_850200_C
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SEN_850200_C
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SHIFT_JIS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SHIFT_JIS.gz
/usr/bin/install -c -m 644 charmaps/SHIFT_JIS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SHIFT_JIS
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SHIFT_JIS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SHIFT_JISX0213 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SHIFT_JISX0213.gz
/usr/bin/install -c -m 644 charmaps/SHIFT_JISX0213 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SHIFT_JISX0213
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/SHIFT_JISX0213
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.101-G2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.101-G2.gz
/usr/bin/install -c -m 644 charmaps/T.101-G2 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.101-G2
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.101-G2
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.61-7BIT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.61-7BIT.gz
/usr/bin/install -c -m 644 charmaps/T.61-7BIT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.61-7BIT
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.61-7BIT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.61-8BIT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.61-8BIT.gz
/usr/bin/install -c -m 644 charmaps/T.61-8BIT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.61-8BIT
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/T.61-8BIT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TCVN5712-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TCVN5712-1.gz
/usr/bin/install -c -m 644 charmaps/TCVN5712-1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TCVN5712-1
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TCVN5712-1
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TIS-620 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TIS-620.gz
/usr/bin/install -c -m 644 charmaps/TIS-620 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TIS-620
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TIS-620
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TSCII [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TSCII.gz
/usr/bin/install -c -m 644 charmaps/TSCII [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TSCII
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/TSCII
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/UTF-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/UTF-8.gz
/usr/bin/install -c -m 644 charmaps/UTF-8 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/UTF-8
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/UTF-8
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/VIDEOTEX-SUPPL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/VIDEOTEX-SUPPL.gz
/usr/bin/install -c -m 644 charmaps/VIDEOTEX-SUPPL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/VIDEOTEX-SUPPL
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/VIDEOTEX-SUPPL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/VISCII [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/VISCII.gz
/usr/bin/install -c -m 644 charmaps/VISCII [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/VISCII
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/VISCII
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/WINDOWS-31J [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/WINDOWS-31J.gz
/usr/bin/install -c -m 644 charmaps/WINDOWS-31J [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/WINDOWS-31J
gzip -9n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/charmaps/WINDOWS-31J
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/POSIX [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/POSIX
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/aa_DJ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/aa_DJ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/aa_ER [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/aa_ER
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/aa_ER@saaho [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/aa_ER@saaho
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/aa_ET [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/aa_ET
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/af_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/af_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/am_ET [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/am_ET
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/an_ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/an_ES
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_AE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_AE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_BH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_BH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_DZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_DZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_EG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_EG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_IQ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_IQ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_JO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_JO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_KW [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_KW
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_LB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_LB
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_LY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_LY
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_MA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_MA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_OM [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_OM
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_QA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_QA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_SA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_SA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_SD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_SD
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_SY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_SY
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_TN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_TN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ar_YE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ar_YE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/as_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/as_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ast_ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ast_ES
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ayc_PE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ayc_PE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/az_AZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/az_AZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/be_BY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/be_BY
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/be_BY@latin [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/be_BY@latin
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/bem_ZM [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/bem_ZM
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ber_DZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ber_DZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ber_MA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ber_MA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/bg_BG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/bg_BG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/bho_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/bho_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/bn_BD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/bn_BD
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/bn_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/bn_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/bo_CN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/bo_CN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/bo_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/bo_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/br_FR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/br_FR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/br_FR@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/br_FR@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/brx_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/brx_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/bs_BA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/bs_BA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/byn_ER [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/byn_ER
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ca_AD [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ca_AD
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ca_ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ca_ES
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ca_ES@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ca_ES@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ca_FR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ca_FR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ca_IT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ca_IT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/crh_UA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/crh_UA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/cs_CZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/cs_CZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/csb_PL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/csb_PL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/cv_RU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/cv_RU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/cy_GB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/cy_GB
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/da_DK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/da_DK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/de_AT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/de_AT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/de_AT@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/de_AT@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/de_BE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/de_BE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/de_BE@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/de_BE@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/de_CH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/de_CH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/de_DE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/de_DE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/de_DE@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/de_DE@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/de_LU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/de_LU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/de_LU@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/de_LU@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/doi_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/doi_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/dv_MV [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/dv_MV
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/dz_BT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/dz_BT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/el_CY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/el_CY
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/el_GR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/el_GR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/el_GR@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/el_GR@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_AG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_AG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_AU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_AU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_BW [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_BW
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_CA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_CA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_DK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_DK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_GB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_GB
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_HK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_HK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_IE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_IE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_IE@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_IE@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_NG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_NG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_NZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_NZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_PH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_PH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_SG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_SG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_US [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_US
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_ZM [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_ZM
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/en_ZW [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/en_ZW
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_AR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_AR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_BO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_BO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_CL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_CL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_CO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_CO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_CR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_CR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_CU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_CU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_DO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_DO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_EC [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_EC
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_ES
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_ES@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_ES@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_GT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_GT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_HN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_HN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_MX [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_MX
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_NI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_NI
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_PA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_PA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_PE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_PE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_PR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_PR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_PY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_PY
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_SV [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_SV
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_US [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_US
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_UY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_UY
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/es_VE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/es_VE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/et_EE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/et_EE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/eu_ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/eu_ES
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/eu_ES@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/eu_ES@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fa_IR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fa_IR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ff_SN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ff_SN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fi_FI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fi_FI
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fi_FI@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fi_FI@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fil_PH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fil_PH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fo_FO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fo_FO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fr_BE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fr_BE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fr_BE@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fr_BE@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fr_CA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fr_CA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fr_CH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fr_CH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fr_FR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fr_FR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fr_FR@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fr_FR@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fr_LU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fr_LU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fr_LU@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fr_LU@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fur_IT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fur_IT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fy_DE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fy_DE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/fy_NL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/fy_NL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ga_IE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ga_IE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ga_IE@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ga_IE@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/gd_GB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/gd_GB
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/gez_ER [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/gez_ER
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/gez_ER@abegede [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/gez_ER@abegede
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/gez_ET [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/gez_ET
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/gez_ET@abegede [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/gez_ET@abegede
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/gl_ES [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/gl_ES
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/gl_ES@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/gl_ES@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/gu_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/gu_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/gv_GB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/gv_GB
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ha_NG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ha_NG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/he_IL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/he_IL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/hi_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/hi_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/hne_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/hne_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/hr_HR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/hr_HR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/hsb_DE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/hsb_DE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ht_HT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ht_HT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/hu_HU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/hu_HU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/hy_AM [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/hy_AM
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/i18n [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/i18n
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ia_FR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ia_FR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/id_ID [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/id_ID
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ig_NG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ig_NG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ik_CA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ik_CA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/is_IS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/is_IS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/iso14651_t1 [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/iso14651_t1
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/iso14651_t1_common [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/iso14651_t1_common
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/iso14651_t1_pinyin [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/iso14651_t1_pinyin
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/it_CH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/it_CH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/it_IT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/it_IT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/it_IT@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/it_IT@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/iu_CA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/iu_CA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/iw_IL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/iw_IL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ja_JP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ja_JP
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ka_GE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ka_GE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/kk_KZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/kk_KZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/kl_GL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/kl_GL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/km_KH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/km_KH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/kn_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/kn_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ko_KR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ko_KR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/kok_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/kok_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ks_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ks_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ks_IN@devanagari [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ks_IN@devanagari
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ku_TR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ku_TR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/kw_GB [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/kw_GB
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ky_KG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ky_KG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/lb_LU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/lb_LU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/lg_UG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/lg_UG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/li_BE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/li_BE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/li_NL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/li_NL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/lij_IT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/lij_IT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/lo_LA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/lo_LA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/lt_LT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/lt_LT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/lv_LV [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/lv_LV
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mag_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mag_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mai_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mai_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mg_MG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mg_MG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mhr_RU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mhr_RU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mi_NZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mi_NZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mk_MK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mk_MK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ml_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ml_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mn_MN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mn_MN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mni_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mni_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mr_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mr_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ms_MY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ms_MY
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/mt_MT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/mt_MT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/my_MM [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/my_MM
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nan_TW@latin [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nan_TW@latin
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nb_NO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nb_NO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nds_DE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nds_DE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nds_NL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nds_NL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ne_NP [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ne_NP
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nhn_MX [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nhn_MX
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/niu_NU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/niu_NU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/niu_NZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/niu_NZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nl_AW [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nl_AW
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nl_BE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nl_BE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nl_BE@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nl_BE@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nl_NL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nl_NL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nl_NL@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nl_NL@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nn_NO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nn_NO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nr_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nr_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/nso_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/nso_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/oc_FR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/oc_FR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/om_ET [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/om_ET
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/om_KE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/om_KE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/or_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/or_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/os_RU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/os_RU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/pa_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/pa_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/pa_PK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/pa_PK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/pap_AN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/pap_AN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/pl_PL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/pl_PL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ps_AF [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ps_AF
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/pt_BR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/pt_BR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/pt_PT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/pt_PT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/pt_PT@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/pt_PT@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ro_RO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ro_RO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ru_RU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ru_RU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ru_UA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ru_UA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/rw_RW [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/rw_RW
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sa_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sa_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sat_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sat_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sc_IT [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sc_IT
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sd_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sd_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sd_IN@devanagari [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sd_IN@devanagari
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/se_NO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/se_NO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/shs_CA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/shs_CA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/si_LK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/si_LK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sid_ET [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sid_ET
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sk_SK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sk_SK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sl_SI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sl_SI
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/so_DJ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/so_DJ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/so_ET [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/so_ET
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/so_KE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/so_KE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/so_SO [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/so_SO
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sq_AL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sq_AL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sq_MK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sq_MK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sr_ME [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sr_ME
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sr_RS [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sr_RS
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sr_RS@latin [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sr_RS@latin
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ss_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ss_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/st_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/st_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sv_FI [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sv_FI
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sv_FI@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sv_FI@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sv_SE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sv_SE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sw_KE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sw_KE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/sw_TZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/sw_TZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/szl_PL [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/szl_PL
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ta_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ta_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ta_LK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ta_LK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/te_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/te_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/tg_TJ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/tg_TJ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/th_TH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/th_TH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ti_ER [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ti_ER
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ti_ET [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ti_ET
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/tig_ER [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/tig_ER
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/tk_TM [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/tk_TM
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/tl_PH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/tl_PH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/tn_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/tn_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/tr_CY [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/tr_CY
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/tr_TR [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/tr_TR
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_circle [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_circle
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_cjk_compat [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_cjk_compat
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_cjk_variants [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_cjk_variants
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_combining [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_combining
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_compat [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_compat
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_font [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_font
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_fraction [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_fraction
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_hangul [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_hangul
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_narrow [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_narrow
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_neutral [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_neutral
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_small [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_small
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/translit_wide [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/translit_wide
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ts_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ts_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/tt_RU [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/tt_RU
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/tt_RU@iqtelif [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/tt_RU@iqtelif
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ug_CN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ug_CN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/uk_UA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/uk_UA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/unm_US [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/unm_US
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ur_IN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ur_IN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ur_PK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ur_PK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/uz_UZ [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/uz_UZ
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/uz_UZ@cyrillic [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/uz_UZ@cyrillic
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/ve_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/ve_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/vi_VN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/vi_VN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/wa_BE [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/wa_BE
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/wa_BE@euro [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/wa_BE@euro
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/wae_CH [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/wae_CH
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/wal_ET [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/wal_ET
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/wo_SN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/wo_SN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/xh_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/xh_ZA
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/yi_US [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/yi_US
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/yo_NG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/yo_NG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/yue_HK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/yue_HK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/zh_CN [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/zh_CN
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/zh_HK [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/zh_HK
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/zh_SG [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/zh_SG
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/zh_TW [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/zh_TW
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales
/usr/bin/install -c -m 644 locales/zu_ZA [...]/tschwinge/Roger_Whittaker.build.install/usr/share/i18n/locales/zu_ZA
> [...]/tschwinge/Roger_Whittaker.build/localedata/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/localedata'
make  subdir=iconvdata -C iconvdata ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/iconvdata'
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-1.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-1.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-1.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-1.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-2.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-2.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-2.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-2.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-3.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-3.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-3.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-3.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-4.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-4.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-4.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-4.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-5.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-5.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-5.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-5.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-6.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-6.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-6.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-6.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-7.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-7.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-7.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-7.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-8.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-8.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-8.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-8.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-9.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-9.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-9.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-9.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-10.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-10.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-10.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-10.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-11.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-11.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-11.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-11.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-13.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-13.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-13.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-13.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-14.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-14.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-14.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-14.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-15.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-15.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-15.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-15.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-16.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-16.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-16.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-16.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/T.61.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/T.61.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/T.61.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/T.61.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO_6937.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_6937.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_6937.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_6937.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/SJIS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/SJIS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/SJIS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/SJIS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/KOI-8.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI-8.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI-8.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI-8.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/HP-ROMAN8.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-ROMAN8.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-ROMAN8.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-ROMAN8.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/HP-ROMAN9.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-ROMAN9.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-ROMAN9.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-ROMAN9.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-AT-DE.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-AT-DE.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-AT-DE.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-AT-DE.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-AT-DE-A.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-AT-DE-A.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-AT-DE-A.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-AT-DE-A.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-CA-FR.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-CA-FR.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-CA-FR.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-CA-FR.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EUC-KR.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-KR.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-KR.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-KR.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/UHC.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UHC.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UHC.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UHC.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/JOHAB.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/JOHAB.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/JOHAB.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/JOHAB.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/libJIS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libJIS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libJIS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libJIS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/libKSC.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libKSC.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libKSC.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libKSC.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/BIG5.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/BIG5.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/BIG5.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/BIG5.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EUC-JP.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-JP.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-JP.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-JP.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/libGB.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libGB.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libGB.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libGB.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EUC-CN.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-CN.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-CN.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-CN.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/libCNS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libCNS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libCNS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libCNS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EUC-TW.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-TW.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-TW.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-TW.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO646.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO646.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO646.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO646.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-DK-NO.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-DK-NO.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-DK-NO.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-DK-NO.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-DK-NO-A.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-DK-NO-A.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-DK-NO-A.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-DK-NO-A.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-ES.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-ES.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-ES.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-ES.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-ES-A.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-ES-A.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-ES-A.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-ES-A.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-ES-S.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-ES-S.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-ES-S.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-ES-S.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-FI-SE.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-FI-SE.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-FI-SE.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-FI-SE.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-FI-SE-A.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-FI-SE-A.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-FI-SE-A.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-FI-SE-A.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-FR.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-FR.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-FR.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-FR.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-IS-FRISS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-IS-FRISS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-IS-FRISS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-IS-FRISS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-IT.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-IT.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-IT.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-IT.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-PT.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-PT.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-PT.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-PT.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-UK.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-UK.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-UK.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-UK.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EBCDIC-US.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-US.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-US.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EBCDIC-US.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM037.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM037.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM037.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM037.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM038.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM038.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM038.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM038.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM274.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM274.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM274.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM274.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM275.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM275.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM275.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM275.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM423.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM423.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM423.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM423.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM500.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM500.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM500.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM500.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM870.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM870.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM870.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM870.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM871.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM871.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM871.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM871.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM891.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM891.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM891.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM891.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM903.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM903.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM903.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM903.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM904.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM904.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM904.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM904.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM905.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM905.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM905.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM905.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1047.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1047.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1047.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1047.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM874.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM874.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM874.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM874.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP737.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP737.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP737.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP737.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP775.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP775.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP775.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP775.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO-2022-KR.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-KR.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-KR.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-KR.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/HP-TURKISH8.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-TURKISH8.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-TURKISH8.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-TURKISH8.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/HP-THAI8.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-THAI8.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-THAI8.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-THAI8.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/HP-GREEK8.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-GREEK8.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-GREEK8.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/HP-GREEK8.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/KOI8-R.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-R.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-R.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-R.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/LATIN-GREEK.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/LATIN-GREEK.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/LATIN-GREEK.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/LATIN-GREEK.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/LATIN-GREEK-1.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/LATIN-GREEK-1.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/LATIN-GREEK-1.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/LATIN-GREEK-1.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM256.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM256.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM256.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM256.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM273.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM273.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM273.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM273.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM277.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM277.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM277.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM277.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM278.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM278.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM278.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM278.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM280.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM280.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM280.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM280.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM281.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM281.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM281.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM281.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM284.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM284.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM284.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM284.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM285.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM285.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM285.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM285.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM290.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM290.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM290.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM290.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM297.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM297.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM297.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM297.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM420.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM420.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM420.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM420.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM424.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM424.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM424.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM424.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM437.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM437.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM437.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM437.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM850.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM850.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM850.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM850.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM851.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM851.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM851.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM851.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM852.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM852.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM852.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM852.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM855.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM855.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM855.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM855.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM857.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM857.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM857.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM857.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM860.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM860.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM860.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM860.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM861.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM861.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM861.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM861.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM862.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM862.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM862.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM862.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM863.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM863.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM863.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM863.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM864.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM864.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM864.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM864.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM865.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM865.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM865.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM865.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM868.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM868.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM868.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM868.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM869.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM869.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM869.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM869.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM875.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM875.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM875.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM875.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM880.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM880.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM880.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM880.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM866.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM866.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM866.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM866.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1258.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1258.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1258.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1258.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM922.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM922.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM922.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM922.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1124.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1124.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1124.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1124.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1129.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1129.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1129.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1129.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM932.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM932.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM932.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM932.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM943.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM943.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM943.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM943.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM856.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM856.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM856.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM856.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM930.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM930.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM930.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM930.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM933.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM933.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM933.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM933.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM935.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM935.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM935.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM935.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM937.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM937.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM937.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM937.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM939.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM939.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM939.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM939.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1046.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1046.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1046.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1046.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1132.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1132.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1132.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1132.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1133.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1133.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1133.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1133.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1160.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1160.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1160.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1160.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1161.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1161.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1161.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1161.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1162.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1162.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1162.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1162.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1163.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1163.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1163.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1163.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1164.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1164.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1164.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1164.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM918.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM918.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM918.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM918.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1004.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1004.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1004.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1004.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1026.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1026.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1026.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1026.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1125.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1125.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1125.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1125.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1250.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1250.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1250.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1250.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1251.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1251.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1251.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1251.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1252.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1252.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1252.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1252.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1253.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1253.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1253.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1253.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1254.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1254.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1254.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1254.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1255.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1255.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1255.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1255.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1256.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1256.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1256.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1256.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP1257.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1257.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1257.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP1257.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO-2022-JP.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-JP.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-JP.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-JP.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/MACINTOSH.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MACINTOSH.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MACINTOSH.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MACINTOSH.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IEC_P27-1.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IEC_P27-1.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IEC_P27-1.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IEC_P27-1.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ASMO_449.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ASMO_449.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ASMO_449.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ASMO_449.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ANSI_X3.110.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ANSI_X3.110.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ANSI_X3.110.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ANSI_X3.110.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CSN_369103.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CSN_369103.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CSN_369103.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CSN_369103.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CWI.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CWI.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CWI.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CWI.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/DEC-MCS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/DEC-MCS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/DEC-MCS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/DEC-MCS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ECMA-CYRILLIC.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ECMA-CYRILLIC.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ECMA-CYRILLIC.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ECMA-CYRILLIC.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GOST_19768-74.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GOST_19768-74.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GOST_19768-74.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GOST_19768-74.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GREEK-CCITT.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GREEK-CCITT.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GREEK-CCITT.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GREEK-CCITT.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GREEK7.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GREEK7.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GREEK7.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GREEK7.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GREEK7-OLD.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GREEK7-OLD.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GREEK7-OLD.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GREEK7-OLD.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/INIS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/INIS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/INIS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/INIS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/INIS-8.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/INIS-8.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/INIS-8.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/INIS-8.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/INIS-CYRILLIC.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/INIS-CYRILLIC.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/INIS-CYRILLIC.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/INIS-CYRILLIC.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO_6937-2.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_6937-2.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_6937-2.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_6937-2.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO_2033.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_2033.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_2033.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_2033.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO_5427.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_5427.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_5427.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_5427.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO_5427-EXT.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_5427-EXT.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_5427-EXT.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_5427-EXT.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO_5428.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_5428.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_5428.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_5428.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO_10367-BOX.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_10367-BOX.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_10367-BOX.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_10367-BOX.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/MAC-IS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-IS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-IS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-IS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/MAC-UK.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-UK.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-UK.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-UK.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/NATS-DANO.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/NATS-DANO.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/NATS-DANO.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/NATS-DANO.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/NATS-SEFI.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/NATS-SEFI.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/NATS-SEFI.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/NATS-SEFI.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/SAMI-WS2.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/SAMI-WS2.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/SAMI-WS2.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/SAMI-WS2.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO-IR-197.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-IR-197.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-IR-197.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-IR-197.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/TIS-620.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/TIS-620.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/TIS-620.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/TIS-620.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/KOI8-U.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-U.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-U.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-U.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GBK.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GBK.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GBK.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GBK.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISIRI-3342.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISIRI-3342.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISIRI-3342.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISIRI-3342.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GBGBK.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GBGBK.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GBGBK.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GBGBK.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO-2022-CN.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-CN.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-CN.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-CN.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/libISOIR165.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libISOIR165.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libISOIR165.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libISOIR165.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/UTF-16.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UTF-16.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UTF-16.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UTF-16.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/UNICODE.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UNICODE.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UNICODE.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UNICODE.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/UTF-32.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UTF-32.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UTF-32.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UTF-32.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/UTF-7.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UTF-7.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UTF-7.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/UTF-7.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/BIG5HKSCS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/BIG5HKSCS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/BIG5HKSCS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/BIG5HKSCS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GB18030.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GB18030.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GB18030.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GB18030.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO-2022-CN-EXT.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-CN-EXT.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-CN-EXT.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-CN-EXT.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/VISCII.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/VISCII.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/VISCII.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/VISCII.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GBBIG5.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GBBIG5.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GBBIG5.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GBBIG5.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP10007.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP10007.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP10007.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP10007.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/KOI8-T.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-T.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-T.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-T.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GEORGIAN-PS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GEORGIAN-PS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GEORGIAN-PS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GEORGIAN-PS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/GEORGIAN-ACADEMY.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GEORGIAN-ACADEMY.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GEORGIAN-ACADEMY.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/GEORGIAN-ACADEMY.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO-IR-209.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-IR-209.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-IR-209.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-IR-209.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/MAC-SAMI.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-SAMI.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-SAMI.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-SAMI.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ARMSCII-8.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ARMSCII-8.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ARMSCII-8.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ARMSCII-8.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/TCVN5712-1.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/TCVN5712-1.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/TCVN5712-1.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/TCVN5712-1.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/libJISX0213.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libJISX0213.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libJISX0213.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/libJISX0213.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EUC-JISX0213.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-JISX0213.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-JISX0213.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-JISX0213.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/SHIFT_JISX0213.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/SHIFT_JISX0213.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/SHIFT_JISX0213.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/SHIFT_JISX0213.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO-2022-JP-3.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-JP-3.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-JP-3.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO-2022-JP-3.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/TSCII.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/TSCII.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/TSCII.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/TSCII.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM866NAV.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM866NAV.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM866NAV.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM866NAV.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP932.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP932.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP932.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP932.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/EUC-JP-MS.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-JP-MS.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-JP-MS.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/EUC-JP-MS.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/PT154.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/PT154.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/PT154.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/PT154.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/RK1048.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/RK1048.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/RK1048.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/RK1048.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1025.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1025.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1025.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1025.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1122.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1122.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1122.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1122.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1137.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1137.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1137.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1137.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1153.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1153.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1153.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1153.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1154.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1154.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1154.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1154.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1155.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1155.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1155.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1155.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1156.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1156.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1156.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1156.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1157.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1157.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1157.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1157.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1158.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1158.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1158.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1158.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM803.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM803.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM803.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM803.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM901.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM901.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM901.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM901.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM902.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM902.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM902.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM902.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM921.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM921.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM921.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM921.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1008.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1008.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1008.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1008.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1008_420.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1008_420.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1008_420.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1008_420.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1097.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1097.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1097.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1097.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1112.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1112.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1112.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1112.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1123.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1123.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1123.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1123.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1130.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1130.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1130.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1130.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1140.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1140.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1140.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1140.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1141.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1141.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1141.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1141.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1142.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1142.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1142.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1142.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1143.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1143.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1143.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1143.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1144.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1144.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1144.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1144.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1145.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1145.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1145.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1145.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1146.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1146.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1146.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1146.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1147.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1147.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1147.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1147.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1148.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1148.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1148.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1148.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1149.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1149.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1149.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1149.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1166.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1166.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1166.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1166.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1167.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1167.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1167.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1167.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM4517.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4517.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4517.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4517.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM4899.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4899.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4899.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4899.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM4909.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4909.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4909.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4909.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM4971.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4971.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4971.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM4971.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM5347.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM5347.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM5347.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM5347.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM9030.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM9030.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM9030.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM9030.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM9066.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM9066.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM9066.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM9066.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM9448.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM9448.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM9448.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM9448.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM12712.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM12712.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM12712.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM12712.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM16804.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM16804.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM16804.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM16804.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1364.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1364.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1364.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1364.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1371.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1371.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1371.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1371.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1388.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1388.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1388.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1388.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1390.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1390.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1390.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1390.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/IBM1399.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1399.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1399.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/IBM1399.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO_11548-1.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_11548-1.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_11548-1.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO_11548-1.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/MIK.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MIK.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MIK.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MIK.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/BRF.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/BRF.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/BRF.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/BRF.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/MAC-CENTRALEUROPE.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-CENTRALEUROPE.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-CENTRALEUROPE.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/MAC-CENTRALEUROPE.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/KOI8-RU.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-RU.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-RU.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/KOI8-RU.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/ISO8859-9E.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-9E.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-9E.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/ISO8859-9E.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP770.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP770.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP770.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP770.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP771.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP771.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP771.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP771.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP772.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP772.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP772.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP772.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP773.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP773.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP773.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP773.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/iconvdata/CP774.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP774.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP774.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/CP774.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv
/usr/bin/install -c -m 644 gconv-modules [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/gconv-modules
if test -f "[...]/tschwinge/Roger_Whittaker.build.install/usr/lib/gconv/gconv-modules.cache"; then \
	   LC_ALL=C LANGUAGE=C \
	   [...]/tschwinge/Roger_Whittaker.build/elf/ld.so --library-path [...]/tschwinge/Roger_Whittaker.build:[...]/tschwinge/Roger_Whittaker.build/math:[...]/tschwinge/Roger_Whittaker.build/elf:[...]/tschwinge/Roger_Whittaker.build/dlfcn:[...]/tschwinge/Roger_Whittaker.build/nss:[...]/tschwinge/Roger_Whittaker.build/nis:[...]/tschwinge/Roger_Whittaker.build/rt:[...]/tschwinge/Roger_Whittaker.build/resolv:[...]/tschwinge/Roger_Whittaker.build/crypt:[...]/tschwinge/Roger_Whittaker.build/mach:[...]/tschwinge/Roger_Whittaker.build/hurd \
	   [...]/tschwinge/Roger_Whittaker.build/iconv/iconvconfig \
	     --prefix=[...]/tschwinge/Roger_Whittaker.build.install; \
	fi
(cd [...]/tschwinge/Roger_Whittaker.build/iconvdata/.; objdump -h iso8859-1.os iso8859-2.os iso8859-3.os iso8859-4.os iso8859-5.os iso8859-6.os iso8859-7.os iso8859-8.os iso8859-9.os iso8859-10.os iso8859-11.os iso8859-13.os iso8859-14.os iso8859-15.os iso8859-16.os t.61.os iso_6937.os sjis.os koi-8.os hp-roman8.os hp-roman9.os ebcdic-at-de.os ebcdic-at-de-a.os ebcdic-ca-fr.os euc-kr.os uhc.os johab.os jis0201.os jis0208.os jis0212.os ksc5601.os big5.os euc-jp.os gb2312.os euc-cn.os cns11643l1.os cns11643.os euc-tw.os iso646.os ebcdic-dk-no.os ebcdic-dk-no-a.os ebcdic-es.os ebcdic-es-a.os ebcdic-es-s.os ebcdic-fi-se.os ebcdic-fi-se-a.os ebcdic-fr.os ebcdic-is-friss.os ebcdic-it.os ebcdic-pt.os ebcdic-uk.os ebcdic-us.os ibm037.os ibm038.os ibm274.os ibm275.os ibm423.os ibm500.os ibm870.os ibm871.os ibm891.os ibm903.os ibm904.os ibm905.os ibm1047.os ibm874.os cp737.os cp775.os iso-2022-kr.os hp-turkish8.os hp-thai8.os hp-greek8.os koi8-r.os latin-greek.os latin-greek-1.os ibm256.os ibm273.os ibm277.os ibm278.os ibm280.os ibm281.os ibm284.os ibm285.os ibm290.os ibm297.os ibm420.os ibm424.os ibm437.os ibm850.os ibm851.os ibm852.os ibm855.os ibm857.os ibm860.os ibm861.os ibm862.os ibm863.os ibm864.os ibm865.os ibm868.os ibm869.os ibm875.os ibm880.os ibm866.os cp1258.os ibm922.os ibm1124.os ibm1129.os ibm932.os ibm943.os ibm856.os ibm930.os ibm933.os ibm935.os ibm937.os ibm939.os ibm1046.os ibm1132.os ibm1133.os ibm1160.os ibm1161.os ibm1162.os ibm1163.os ibm1164.os ibm918.os ibm1004.os ibm1026.os cp1125.os cp1250.os cp1251.os cp1252.os cp1253.os cp1254.os cp1255.os cp1256.os cp1257.os iso-2022-jp.os macintosh.os iec_p27-1.os asmo_449.os ansi_x3.110.os csn_369103.os cwi.os dec-mcs.os ecma-cyrillic.os gost_19768-74.os greek-ccitt.os greek7.os greek7-old.os inis.os inis-8.os inis-cyrillic.os iso_6937-2.os iso_2033.os iso_5427.os iso_5427-ext.os iso_5428.os iso_10367-box.os mac-is.os mac-uk.os nats-dano.os nats-sefi.os sami-ws2.os iso-ir-197.os tis-620.os koi8-u.os gbk.os isiri-3342.os gbgbk.os iso-2022-cn.os iso-ir-165.os utf-16.os unicode.os utf-32.os utf-7.os big5hkscs.os gb18030.os iso-2022-cn-ext.os viscii.os gbbig5.os cp10007.os koi8-t.os georgian-ps.os georgian-academy.os iso-ir-209.os mac-sami.os armscii-8.os tcvn5712-1.os jisx0213.os euc-jisx0213.os shift_jisx0213.os iso-2022-jp-3.os tscii.os ibm866nav.os cp932.os euc-jp-ms.os pt154.os rk1048.os ibm1025.os ibm1122.os ibm1137.os ibm1153.os ibm1154.os ibm1155.os ibm1156.os ibm1157.os ibm1158.os ibm803.os ibm901.os ibm902.os ibm921.os ibm1008.os ibm1008_420.os ibm1097.os ibm1112.os ibm1123.os ibm1130.os ibm1140.os ibm1141.os ibm1142.os ibm1143.os ibm1144.os ibm1145.os ibm1146.os ibm1147.os ibm1148.os ibm1149.os ibm1166.os ibm1167.os ibm4517.os ibm4899.os ibm4909.os ibm4971.os ibm5347.os ibm9030.os ibm9066.os ibm9448.os ibm12712.os ibm16804.os ibm1364.os ibm1371.os ibm1388.os ibm1390.os ibm1399.os iso_11548-1.os mik.os brf.os mac-centraleurope.os koi8-ru.os iso8859-9e.os cp770.os cp771.os cp772.os cp773.os cp774.os ISO8859-1.so ISO8859-2.so ISO8859-3.so ISO8859-4.so ISO8859-5.so ISO8859-6.so ISO8859-7.so ISO8859-8.so ISO8859-9.so ISO8859-10.so ISO8859-11.so ISO8859-13.so ISO8859-14.so ISO8859-15.so ISO8859-16.so T.61.so ISO_6937.so SJIS.so KOI-8.so HP-ROMAN8.so HP-ROMAN9.so EBCDIC-AT-DE.so EBCDIC-AT-DE-A.so EBCDIC-CA-FR.so EUC-KR.so UHC.so JOHAB.so libJIS.so libKSC.so BIG5.so EUC-JP.so libGB.so EUC-CN.so libCNS.so EUC-TW.so ISO646.so EBCDIC-DK-NO.so EBCDIC-DK-NO-A.so EBCDIC-ES.so EBCDIC-ES-A.so EBCDIC-ES-S.so EBCDIC-FI-SE.so EBCDIC-FI-SE-A.so EBCDIC-FR.so EBCDIC-IS-FRISS.so EBCDIC-IT.so EBCDIC-PT.so EBCDIC-UK.so EBCDIC-US.so IBM037.so IBM038.so IBM274.so IBM275.so IBM423.so IBM500.so IBM870.so IBM871.so IBM891.so IBM903.so IBM904.so IBM905.so IBM1047.so IBM874.so CP737.so CP775.so ISO-2022-KR.so HP-TURKISH8.so HP-THAI8.so HP-GREEK8.so KOI8-R.so LATIN-GREEK.so LATIN-GREEK-1.so IBM256.so IBM273.so IBM277.so IBM278.so IBM280.so IBM281.so IBM284.so IBM285.so IBM290.so IBM297.so IBM420.so IBM424.so IBM437.so IBM850.so IBM851.so IBM852.so IBM855.so IBM857.so IBM860.so IBM861.so IBM862.so IBM863.so IBM864.so IBM865.so IBM868.so IBM869.so IBM875.so IBM880.so IBM866.so CP1258.so IBM922.so IBM1124.so IBM1129.so IBM932.so IBM943.so IBM856.so IBM930.so IBM933.so IBM935.so IBM937.so IBM939.so IBM1046.so IBM1132.so IBM1133.so IBM1160.so IBM1161.so IBM1162.so IBM1163.so IBM1164.so IBM918.so IBM1004.so IBM1026.so CP1125.so CP1250.so CP1251.so CP1252.so CP1253.so CP1254.so CP1255.so CP1256.so CP1257.so ISO-2022-JP.so MACINTOSH.so IEC_P27-1.so ASMO_449.so ANSI_X3.110.so CSN_369103.so CWI.so DEC-MCS.so ECMA-CYRILLIC.so GOST_19768-74.so GREEK-CCITT.so GREEK7.so GREEK7-OLD.so INIS.so INIS-8.so INIS-CYRILLIC.so ISO_6937-2.so ISO_2033.so ISO_5427.so ISO_5427-EXT.so ISO_5428.so ISO_10367-BOX.so MAC-IS.so MAC-UK.so NATS-DANO.so NATS-SEFI.so SAMI-WS2.so ISO-IR-197.so TIS-620.so KOI8-U.so GBK.so ISIRI-3342.so GBGBK.so ISO-2022-CN.so libISOIR165.so UTF-16.so UNICODE.so UTF-32.so UTF-7.so BIG5HKSCS.so GB18030.so ISO-2022-CN-EXT.so VISCII.so GBBIG5.so CP10007.so KOI8-T.so GEORGIAN-PS.so GEORGIAN-ACADEMY.so ISO-IR-209.so MAC-SAMI.so ARMSCII-8.so TCVN5712-1.so libJISX0213.so EUC-JISX0213.so SHIFT_JISX0213.so ISO-2022-JP-3.so TSCII.so IBM866NAV.so CP932.so EUC-JP-MS.so PT154.so RK1048.so IBM1025.so IBM1122.so IBM1137.so IBM1153.so IBM1154.so IBM1155.so IBM1156.so IBM1157.so IBM1158.so IBM803.so IBM901.so IBM902.so IBM921.so IBM1008.so IBM1008_420.so IBM1097.so IBM1112.so IBM1123.so IBM1130.so IBM1140.so IBM1141.so IBM1142.so IBM1143.so IBM1144.so IBM1145.so IBM1146.so IBM1147.so IBM1148.so IBM1149.so IBM1166.so IBM1167.so IBM4517.so IBM4899.so IBM4909.so IBM4971.so IBM5347.so IBM9030.so IBM9066.so IBM9448.so IBM12712.so IBM16804.so IBM1364.so IBM1371.so IBM1388.so IBM1390.so IBM1399.so ISO_11548-1.so MIK.so BRF.so MAC-CENTRALEUROPE.so KOI8-RU.so ISO8859-9E.so CP770.so CP771.so CP772.so CP773.so CP774.so) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/iconvdata/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/iconvdata/stubsT [...]/tschwinge/Roger_Whittaker.build/iconvdata/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/iconvdata'
make  subdir=assert -C assert ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/assert'
/usr/bin/install -c -m 644 assert.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/assert.h
(cd [...]/tschwinge/Roger_Whittaker.build/assert/.; objdump -h assert.o assert-perr.o __assert.o assert.os assert-perr.os __assert.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/assert/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/assert/stubsT [...]/tschwinge/Roger_Whittaker.build/assert/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/assert'
make  subdir=ctype -C ctype ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/ctype'
/usr/bin/install -c -m 644 ctype.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/ctype.h
(cd [...]/tschwinge/Roger_Whittaker.build/ctype/.; objdump -h ctype.o ctype-extn.o ctype_l.o isctype.o ctype-info.o ctype.os ctype-extn.os ctype_l.os isctype.os ctype-info.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/ctype/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/ctype/stubsT [...]/tschwinge/Roger_Whittaker.build/ctype/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/ctype'
make  subdir=intl -C intl ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/intl'
/usr/bin/install -c -m 644 libintl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/libintl.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale
/usr/bin/install -c -m 644 locale.alias [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/locale.alias
(cd [...]/tschwinge/Roger_Whittaker.build/intl/.; objdump -h bindtextdom.o dcgettext.o dgettext.o gettext.o dcigettext.o dcngettext.o dngettext.o ngettext.o finddomain.o loadmsgcat.o localealias.o textdomain.o l10nflist.o explodename.o plural.o plural-exp.o hash-string.o bindtextdom.os dcgettext.os dgettext.os gettext.os dcigettext.os dcngettext.os dngettext.os ngettext.os finddomain.os loadmsgcat.os localealias.os textdomain.os l10nflist.os explodename.os plural.os plural-exp.os hash-string.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/intl/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/intl/stubsT [...]/tschwinge/Roger_Whittaker.build/intl/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/intl'
make  subdir=catgets -C catgets ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/catgets'
/usr/bin/install -c -m 644 nl_types.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/nl_types.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/catgets/gencat [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/gencat.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/gencat.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/gencat
(cd [...]/tschwinge/Roger_Whittaker.build/catgets/.; objdump -h catgets.o open_catalog.o catgets.os open_catalog.os xmalloc.o) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/catgets/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/catgets/stubsT [...]/tschwinge/Roger_Whittaker.build/catgets/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/catgets'
make  subdir=math -C math ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/math'
/usr/bin/install -c -m 644 math.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/math.h
/usr/bin/install -c -m 644 bits/mathcalls.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/mathcalls.h
/usr/bin/install -c -m 644 ../sysdeps/x86/fpu/bits/mathinline.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/mathinline.h
/usr/bin/install -c -m 644 ../sysdeps/ieee754/bits/huge_val.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/huge_val.h
/usr/bin/install -c -m 644 ../sysdeps/ieee754/bits/huge_valf.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/huge_valf.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/huge_vall.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/huge_vall.h
/usr/bin/install -c -m 644 ../sysdeps/ieee754/bits/inf.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/inf.h
/usr/bin/install -c -m 644 ../sysdeps/ieee754/bits/nan.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/nan.h
/usr/bin/install -c -m 644 ../sysdeps/x86/fpu_control.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/fpu_control.h
/usr/bin/install -c -m 644 complex.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/complex.h
/usr/bin/install -c -m 644 bits/cmathcalls.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/cmathcalls.h
/usr/bin/install -c -m 644 fenv.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/fenv.h
/usr/bin/install -c -m 644 ../sysdeps/x86/fpu/bits/fenv.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/fenv.h
/usr/bin/install -c -m 644 ../bits/fenvinline.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/fenvinline.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/mathdef.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/mathdef.h
/usr/bin/install -c -m 644 tgmath.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/tgmath.h
/usr/bin/install -c -m 644 bits/math-finite.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/math-finite.h
/usr/bin/install -c -m 644 ../sysdeps/ieee754/ieee754.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/ieee754.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/math/libm.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libm-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libm-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libm-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libm-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libm.so.6` [...]/tschwinge/Roger_Whittaker.build.install/lib/libm.so.6 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libm.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libm.so.6 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libm.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libm.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libm.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/math/libieee.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libieee.a
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/math/libm.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libm.a
(cd [...]/tschwinge/Roger_Whittaker.build/math/.; objdump -h s_isinf.o s_isnan.o s_finite.o s_copysign.o s_modf.o s_scalbn.o s_frexp.o s_ldexp.o s_signbit.o s_isinff.o s_isnanf.o s_finitef.o s_copysignf.o s_modff.o s_scalbnf.o s_frexpf.o s_ldexpf.o s_signbitf.o s_isinfl.o s_isnanl.o s_finitel.o s_copysignl.o s_modfl.o s_scalbnl.o s_frexpl.o s_ldexpl.o s_signbitl.o setfpucw.o fpu_control.o s_isinf.os s_isnan.os s_finite.os s_copysign.os s_modf.os s_scalbn.os s_frexp.os s_ldexp.os s_signbit.os s_isinff.os s_isnanf.os s_finitef.os s_copysignf.os s_modff.os s_scalbnf.os s_frexpf.os s_ldexpf.os s_signbitf.os s_isinfl.os s_isnanl.os s_finitel.os s_copysignl.os s_modfl.os s_scalbnl.os s_frexpl.os s_ldexpl.os s_signbitl.os setfpucw.os fpu_control.os libieee.a ieee-math.o k_standard.o s_lib_version.o s_matherr.o s_signgam.o fclrexcpt.o fgetexcptflg.o fraiseexcpt.o fsetexcptflg.o ftestexcept.o fegetround.o fesetround.o fegetenv.o feholdexcpt.o fesetenv.o feupdateenv.o t_exp.o fedisblxcpt.o feenablxcpt.o fegetexcept.o powl_helper.o e_acos.o e_acosh.o e_asin.o e_atan2.o e_atanh.o e_cosh.o e_exp.o e_fmod.o e_hypot.o e_j0.o e_j1.o e_jn.o e_lgamma_r.o e_log.o e_log10.o e_pow.o e_rem_pio2.o e_remainder.o e_scalb.o e_sinh.o e_sqrt.o e_gamma_r.o e_ilogb.o k_cos.o k_rem_pio2.o k_sin.o k_tan.o s_asinh.o s_atan.o s_cbrt.o s_ceil.o s_cos.o s_erf.o s_expm1.o s_fabs.o s_floor.o s_log1p.o s_logb.o s_nextafter.o s_nexttoward.o s_rint.o s_scalbln.o s_significand.o s_sin.o s_tan.o s_tanh.o w_acos.o w_acosh.o w_asin.o w_atan2.o w_atanh.o w_cosh.o w_drem.o w_exp.o w_exp2.o w_exp10.o w_fmod.o w_tgamma.o w_hypot.o w_j0.o w_j1.o w_jn.o w_lgamma.o w_lgamma_r.o w_log.o w_log10.o w_pow.o w_remainder.o w_scalb.o w_sinh.o w_sqrt.o w_ilogb.o s_fpclassify.o s_fmax.o s_fmin.o s_fdim.o s_nan.o s_trunc.o s_remquo.o e_log2.o e_exp2.o s_round.o s_nearbyint.o s_sincos.o conj.o cimag.o creal.o cabs.o carg.o s_cexp.o s_csinh.o s_ccosh.o s_clog.o s_catan.o s_casin.o s_ccos.o s_csin.o s_ctan.o s_ctanh.o s_cacos.o s_casinh.o s_cacosh.o s_catanh.o s_csqrt.o s_cpow.o s_cproj.o s_clog10.o s_fma.o s_lrint.o s_llrint.o s_lround.o s_llround.o e_exp10.o w_log2.o s_isinf_ns.o s_issignaling.o m_isinf.o m_isnan.o m_finite.o m_copysign.o m_modf.o m_scalbn.o m_frexp.o m_ldexp.o m_signbit.o x2y2m1.o k_casinh.o gamma_product.o e_acosf.o e_acoshf.o e_asinf.o e_atan2f.o e_atanhf.o e_coshf.o e_expf.o e_fmodf.o e_hypotf.o e_j0f.o e_j1f.o e_jnf.o e_lgammaf_r.o e_logf.o e_log10f.o e_powf.o e_rem_pio2f.o e_remainderf.o e_scalbf.o e_sinhf.o e_sqrtf.o e_gammaf_r.o e_ilogbf.o k_cosf.o k_rem_pio2f.o k_sinf.o k_tanf.o s_asinhf.o s_atanf.o s_cbrtf.o s_ceilf.o s_cosf.o s_erff.o s_expm1f.o s_fabsf.o s_floorf.o s_log1pf.o s_logbf.o s_nextafterf.o s_nexttowardf.o s_rintf.o s_scalblnf.o s_significandf.o s_sinf.o s_tanf.o s_tanhf.o w_acosf.o w_acoshf.o w_asinf.o w_atan2f.o w_atanhf.o w_coshf.o w_dremf.o w_expf.o w_exp2f.o w_exp10f.o w_fmodf.o w_tgammaf.o w_hypotf.o w_j0f.o w_j1f.o w_jnf.o w_lgammaf.o w_lgammaf_r.o w_logf.o w_log10f.o w_powf.o w_remainderf.o w_scalbf.o w_sinhf.o w_sqrtf.o w_ilogbf.o s_fpclassifyf.o s_fmaxf.o s_fminf.o s_fdimf.o s_nanf.o s_truncf.o s_remquof.o e_log2f.o e_exp2f.o s_roundf.o s_nearbyintf.o s_sincosf.o conjf.o cimagf.o crealf.o cabsf.o cargf.o s_cexpf.o s_csinhf.o s_ccoshf.o s_clogf.o s_catanf.o s_casinf.o s_ccosf.o s_csinf.o s_ctanf.o s_ctanhf.o s_cacosf.o s_casinhf.o s_cacoshf.o s_catanhf.o s_csqrtf.o s_cpowf.o s_cprojf.o s_clog10f.o s_fmaf.o s_lrintf.o s_llrintf.o s_lroundf.o s_llroundf.o e_exp10f.o w_log2f.o s_isinf_nsf.o s_issignalingf.o m_isinff.o m_isnanf.o m_finitef.o m_copysignf.o m_modff.o m_scalbnf.o m_frexpf.o m_ldexpf.o m_signbitf.o x2y2m1f.o k_casinhf.o gamma_productf.o e_acosl.o e_acoshl.o e_asinl.o e_atan2l.o e_atanhl.o e_coshl.o e_expl.o e_fmodl.o e_hypotl.o e_j0l.o e_j1l.o e_jnl.o e_lgammal_r.o e_logl.o e_log10l.o e_powl.o e_rem_pio2l.o e_remainderl.o e_scalbl.o e_sinhl.o e_sqrtl.o e_gammal_r.o e_ilogbl.o k_cosl.o k_rem_pio2l.o k_sinl.o k_tanl.o s_asinhl.o s_atanl.o s_cbrtl.o s_ceill.o s_cosl.o s_erfl.o s_expm1l.o s_fabsl.o s_floorl.o s_log1pl.o s_logbl.o s_nextafterl.o s_nexttowardl.o s_rintl.o s_scalblnl.o s_significandl.o s_sinl.o s_tanl.o s_tanhl.o w_acosl.o w_acoshl.o w_asinl.o w_atan2l.o w_atanhl.o w_coshl.o w_dreml.o w_expl.o w_exp2l.o w_exp10l.o w_fmodl.o w_tgammal.o w_hypotl.o w_j0l.o w_j1l.o w_jnl.o w_lgammal.o w_lgammal_r.o w_logl.o w_log10l.o w_powl.o w_remainderl.o w_scalbl.o w_sinhl.o w_sqrtl.o w_ilogbl.o s_fpclassifyl.o s_fmaxl.o s_fminl.o s_fdiml.o s_nanl.o s_truncl.o s_remquol.o e_log2l.o e_exp2l.o s_roundl.o s_nearbyintl.o s_sincosl.o conjl.o cimagl.o creall.o cabsl.o cargl.o s_cexpl.o s_csinhl.o s_ccoshl.o s_clogl.o s_catanl.o s_casinl.o s_ccosl.o s_csinl.o s_ctanl.o s_ctanhl.o s_cacosl.o s_casinhl.o s_cacoshl.o s_catanhl.o s_csqrtl.o s_cpowl.o s_cprojl.o s_clog10l.o s_fmal.o s_lrintl.o s_llrintl.o s_lroundl.o s_llroundl.o e_exp10l.o w_log2l.o s_isinf_nsl.o s_issignalingl.o m_isinfl.o m_isnanl.o m_finitel.o m_copysignl.o m_modfl.o m_scalbnl.o m_frexpl.o m_ldexpl.o m_signbitl.o x2y2m1l.o k_casinhl.o gamma_productl.o t_sincosl.o k_sincosl.o branred.o doasin.o dosincos.o halfulp.o mpa.o mpatan2.o mpatan.o mpexp.o mplog.o mpsqrt.o mptan.o sincos32.o slowexp.o slowpow.o sincostab.o k_standard.os s_lib_version.os s_matherr.os s_signgam.os fclrexcpt.os fgetexcptflg.os fraiseexcpt.os fsetexcptflg.os ftestexcept.os fegetround.os fesetround.os fegetenv.os feholdexcpt.os fesetenv.os feupdateenv.os t_exp.os fedisblxcpt.os feenablxcpt.os fegetexcept.os powl_helper.os e_acos.os e_acosh.os e_asin.os e_atan2.os e_atanh.os e_cosh.os e_exp.os e_fmod.os e_hypot.os e_j0.os e_j1.os e_jn.os e_lgamma_r.os e_log.os e_log10.os e_pow.os e_rem_pio2.os e_remainder.os e_scalb.os e_sinh.os e_sqrt.os e_gamma_r.os e_ilogb.os k_cos.os k_rem_pio2.os k_sin.os k_tan.os s_asinh.os s_atan.os s_cbrt.os s_ceil.os s_cos.os s_erf.os s_expm1.os s_fabs.os s_floor.os s_log1p.os s_logb.os s_nextafter.os s_nexttoward.os s_rint.os s_scalbln.os s_significand.os s_sin.os s_tan.os s_tanh.os w_acos.os w_acosh.os w_asin.os w_atan2.os w_atanh.os w_cosh.os w_drem.os w_exp.os w_exp2.os w_exp10.os w_fmod.os w_tgamma.os w_hypot.os w_j0.os w_j1.os w_jn.os w_lgamma.os w_lgamma_r.os w_log.os w_log10.os w_pow.os w_remainder.os w_scalb.os w_sinh.os w_sqrt.os w_ilogb.os s_fpclassify.os s_fmax.os s_fmin.os s_fdim.os s_nan.os s_trunc.os s_remquo.os e_log2.os e_exp2.os s_round.os s_nearbyint.os s_sincos.os conj.os cimag.os creal.os cabs.os carg.os s_cexp.os s_csinh.os s_ccosh.os s_clog.os s_catan.os s_casin.os s_ccos.os s_csin.os s_ctan.os s_ctanh.os s_cacos.os s_casinh.os s_cacosh.os s_catanh.os s_csqrt.os s_cpow.os s_cproj.os s_clog10.os s_fma.os s_lrint.os s_llrint.os s_lround.os s_llround.os e_exp10.os w_log2.os s_isinf_ns.os s_issignaling.os m_isinf.os m_isnan.os m_finite.os m_copysign.os m_modf.os m_scalbn.os m_frexp.os m_ldexp.os m_signbit.os x2y2m1.os k_casinh.os gamma_product.os e_acosf.os e_acoshf.os e_asinf.os e_atan2f.os e_atanhf.os e_coshf.os e_expf.os e_fmodf.os e_hypotf.os e_j0f.os e_j1f.os e_jnf.os e_lgammaf_r.os e_logf.os e_log10f.os e_powf.os e_rem_pio2f.os e_remainderf.os e_scalbf.os e_sinhf.os e_sqrtf.os e_gammaf_r.os e_ilogbf.os k_cosf.os k_rem_pio2f.os k_sinf.os k_tanf.os s_asinhf.os s_atanf.os s_cbrtf.os s_ceilf.os s_cosf.os s_erff.os s_expm1f.os s_fabsf.os s_floorf.os s_log1pf.os s_logbf.os s_nextafterf.os s_nexttowardf.os s_rintf.os s_scalblnf.os s_significandf.os s_sinf.os s_tanf.os s_tanhf.os w_acosf.os w_acoshf.os w_asinf.os w_atan2f.os w_atanhf.os w_coshf.os w_dremf.os w_expf.os w_exp2f.os w_exp10f.os w_fmodf.os w_tgammaf.os w_hypotf.os w_j0f.os w_j1f.os w_jnf.os w_lgammaf.os w_lgammaf_r.os w_logf.os w_log10f.os w_powf.os w_remainderf.os w_scalbf.os w_sinhf.os w_sqrtf.os w_ilogbf.os s_fpclassifyf.os s_fmaxf.os s_fminf.os s_fdimf.os s_nanf.os s_truncf.os s_remquof.os e_log2f.os e_exp2f.os s_roundf.os s_nearbyintf.os s_sincosf.os conjf.os cimagf.os crealf.os cabsf.os cargf.os s_cexpf.os s_csinhf.os s_ccoshf.os s_clogf.os s_catanf.os s_casinf.os s_ccosf.os s_csinf.os s_ctanf.os s_ctanhf.os s_cacosf.os s_casinhf.os s_cacoshf.os s_catanhf.os s_csqrtf.os s_cpowf.os s_cprojf.os s_clog10f.os s_fmaf.os s_lrintf.os s_llrintf.os s_lroundf.os s_llroundf.os e_exp10f.os w_log2f.os s_isinf_nsf.os s_issignalingf.os m_isinff.os m_isnanf.os m_finitef.os m_copysignf.os m_modff.os m_scalbnf.os m_frexpf.os m_ldexpf.os m_signbitf.os x2y2m1f.os k_casinhf.os gamma_productf.os e_acosl.os e_acoshl.os e_asinl.os e_atan2l.os e_atanhl.os e_coshl.os e_expl.os e_fmodl.os e_hypotl.os e_j0l.os e_j1l.os e_jnl.os e_lgammal_r.os e_logl.os e_log10l.os e_powl.os e_rem_pio2l.os e_remainderl.os e_scalbl.os e_sinhl.os e_sqrtl.os e_gammal_r.os e_ilogbl.os k_cosl.os k_rem_pio2l.os k_sinl.os k_tanl.os s_asinhl.os s_atanl.os s_cbrtl.os s_ceill.os s_cosl.os s_erfl.os s_expm1l.os s_fabsl.os s_floorl.os s_log1pl.os s_logbl.os s_nextafterl.os s_nexttowardl.os s_rintl.os s_scalblnl.os s_significandl.os s_sinl.os s_tanl.os s_tanhl.os w_acosl.os w_acoshl.os w_asinl.os w_atan2l.os w_atanhl.os w_coshl.os w_dreml.os w_expl.os w_exp2l.os w_exp10l.os w_fmodl.os w_tgammal.os w_hypotl.os w_j0l.os w_j1l.os w_jnl.os w_lgammal.os w_lgammal_r.os w_logl.os w_log10l.os w_powl.os w_remainderl.os w_scalbl.os w_sinhl.os w_sqrtl.os w_ilogbl.os s_fpclassifyl.os s_fmaxl.os s_fminl.os s_fdiml.os s_nanl.os s_truncl.os s_remquol.os e_log2l.os e_exp2l.os s_roundl.os s_nearbyintl.os s_sincosl.os conjl.os cimagl.os creall.os cabsl.os cargl.os s_cexpl.os s_csinhl.os s_ccoshl.os s_clogl.os s_catanl.os s_casinl.os s_ccosl.os s_csinl.os s_ctanl.os s_ctanhl.os s_cacosl.os s_casinhl.os s_cacoshl.os s_catanhl.os s_csqrtl.os s_cpowl.os s_cprojl.os s_clog10l.os s_fmal.os s_lrintl.os s_llrintl.os s_lroundl.os s_llroundl.os e_exp10l.os w_log2l.os s_isinf_nsl.os s_issignalingl.os m_isinfl.os m_isnanl.os m_finitel.os m_copysignl.os m_modfl.os m_scalbnl.os m_frexpl.os m_ldexpl.os m_signbitl.os x2y2m1l.os k_casinhl.os gamma_productl.os t_sincosl.os k_sincosl.os branred.os doasin.os dosincos.os halfulp.os mpa.os mpatan2.os mpatan.os mpexp.os mplog.os mpsqrt.os mptan.os sincos32.os slowexp.os slowpow.os sincostab.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/math/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/math/stubsT [...]/tschwinge/Roger_Whittaker.build/math/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/math'
make  subdir=setjmp -C setjmp ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/setjmp'
/usr/bin/install -c -m 644 setjmp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/setjmp.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/setjmp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/setjmp.h
/usr/bin/install -c -m 644 bits/setjmp2.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/setjmp2.h
(cd [...]/tschwinge/Roger_Whittaker.build/setjmp/.; objdump -h setjmp.o sigjmp.o bsd-setjmp.o bsd-_setjmp.o longjmp.o __longjmp.o jmp-unwind.o setjmp.os sigjmp.os bsd-setjmp.os bsd-_setjmp.os longjmp.os __longjmp.os jmp-unwind.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/setjmp/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/setjmp/stubsT [...]/tschwinge/Roger_Whittaker.build/setjmp/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/setjmp'
make  subdir=signal -C signal ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/signal'
/usr/bin/install -c -m 644 signal.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/signal.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys
/usr/bin/install -c -m 644 sys/signal.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/signal.h
/usr/bin/install -c -m 644 ../sysdeps/unix/bsd/bits/signum.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/signum.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/i386/bits/sigcontext.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/sigcontext.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/sigaction.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/sigaction.h
/usr/bin/install -c -m 644 ../bits/sigset.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/sigset.h
/usr/bin/install -c -m 644 ../bits/siginfo.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/siginfo.h
/usr/bin/install -c -m 644 ../bits/sigstack.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/sigstack.h
/usr/bin/install -c -m 644 ../bits/sigthread.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/sigthread.h
(cd [...]/tschwinge/Roger_Whittaker.build/signal/.; objdump -h signal.o raise.o killpg.o sigaction.o sigprocmask.o kill.o sigpending.o sigsuspend.o sigwait.o sigblock.o sigsetmask.o sigpause.o sigvec.o sigstack.o sigaltstack.o sigintr.o sigsetops.o sigempty.o sigfillset.o sigaddset.o sigdelset.o sigismem.o sigreturn.o siggetmask.o sysv_signal.o sigisempty.o sigandset.o sigorset.o allocrtsig.o sigtimedwait.o sigwaitinfo.o sigqueue.o sighold.o sigrelse.o sigignore.o sigset.o signal.os raise.os killpg.os sigaction.os sigprocmask.os kill.os sigpending.os sigsuspend.os sigwait.os sigblock.os sigsetmask.os sigpause.os sigvec.os sigstack.os sigaltstack.os sigintr.os sigsetops.os sigempty.os sigfillset.os sigaddset.os sigdelset.os sigismem.os sigreturn.os siggetmask.os sysv_signal.os sigisempty.os sigandset.os sigorset.os allocrtsig.os sigtimedwait.os sigwaitinfo.os sigqueue.os sighold.os sigrelse.os sigignore.os sigset.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/signal/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/signal/stubsT [...]/tschwinge/Roger_Whittaker.build/signal/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/signal'
make  subdir=stdlib -C stdlib ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/stdlib'
/usr/bin/install -c -m 644 stdlib.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/stdlib.h
/usr/bin/install -c -m 644 bits/stdlib.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stdlib.h
/usr/bin/install -c -m 644 bits/stdlib-ldbl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stdlib-ldbl.h
/usr/bin/install -c -m 644 bits/stdlib-float.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stdlib-float.h
/usr/bin/install -c -m 644 monetary.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/monetary.h
/usr/bin/install -c -m 644 bits/monetary-ldbl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/monetary-ldbl.h
/usr/bin/install -c -m 644 ../sysdeps/generic/inttypes.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/inttypes.h
/usr/bin/install -c -m 644 ../sysdeps/generic/stdint.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/stdint.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/wordsize.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/wordsize.h
/usr/bin/install -c -m 644 errno.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/errno.h
/usr/bin/install -c -m 644 sys/errno.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/errno.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/errno.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/errno.h
/usr/bin/install -c -m 644 ucontext.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/ucontext.h
/usr/bin/install -c -m 644 ../sysdeps/i386/sys/ucontext.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/ucontext.h
/usr/bin/install -c -m 644 alloca.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/alloca.h
/usr/bin/install -c -m 644 fmtmsg.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/fmtmsg.h
/usr/bin/install -c -m 644 ../bits/stdlib-bsearch.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stdlib-bsearch.h
(cd [...]/tschwinge/Roger_Whittaker.build/stdlib/.; objdump -h atof.o atoi.o atol.o atoll.o abort.o bsearch.o qsort.o msort.o getenv.o putenv.o setenv.o secure-getenv.o exit.o on_exit.o atexit.o cxa_atexit.o cxa_finalize.o old_atexit.o quick_exit.o at_quick_exit.o cxa_at_quick_exit.o cxa_thread_atexit_impl.o abs.o labs.o llabs.o div.o ldiv.o lldiv.o mblen.o mbstowcs.o mbtowc.o wcstombs.o wctomb.o random.o random_r.o rand.o rand_r.o drand48.o erand48.o lrand48.o nrand48.o mrand48.o jrand48.o srand48.o seed48.o lcong48.o drand48_r.o erand48_r.o lrand48_r.o nrand48_r.o mrand48_r.o jrand48_r.o srand48_r.o seed48_r.o lcong48_r.o drand48-iter.o strtol.o strtoul.o strtoll.o strtoull.o strtol_l.o strtoul_l.o strtoll_l.o strtoull_l.o strtof.o strtod.o strtold.o strtof_l.o strtod_l.o strtold_l.o system.o canonicalize.o a64l.o l64a.o rpmatch.o strfmon.o strfmon_l.o getsubopt.o xpg_basename.o fmtmsg.o strtoimax.o strtoumax.o wcstoimax.o wcstoumax.o getcontext.o setcontext.o makecontext.o swapcontext.o inlines.o add_n.o addmul_1.o cmp.o divmod_1.o divrem.o udiv_qrnnd.o lshift.o rshift.o mod_1.o mul.o mul_1.o mul_n.o sub_n.o submul_1.o dbl2mpn.o ldbl2mpn.o mpn2flt.o mpn2dbl.o mpn2ldbl.o grouping.o groupingwc.o tens_in_limb.o fpioconst.o mp_clz_tab.o makecontext-helper.o atof.os atoi.os atol.os atoll.os abort.os bsearch.os qsort.os msort.os getenv.os putenv.os setenv.os secure-getenv.os exit.os on_exit.os cxa_atexit.os cxa_finalize.os old_atexit.os quick_exit.os cxa_at_quick_exit.os cxa_thread_atexit_impl.os abs.os labs.os llabs.os div.os ldiv.os lldiv.os mblen.os mbstowcs.os mbtowc.os wcstombs.os wctomb.os random.os random_r.os rand.os rand_r.os drand48.os erand48.os lrand48.os nrand48.os mrand48.os jrand48.os srand48.os seed48.os lcong48.os drand48_r.os erand48_r.os lrand48_r.os nrand48_r.os mrand48_r.os jrand48_r.os srand48_r.os seed48_r.os lcong48_r.os drand48-iter.os strtol.os strtoul.os strtoll.os strtoull.os strtol_l.os strtoul_l.os strtoll_l.os strtoull_l.os strtof.os strtod.os strtold.os strtof_l.os strtod_l.os strtold_l.os system.os canonicalize.os a64l.os l64a.os rpmatch.os strfmon.os strfmon_l.os getsubopt.os xpg_basename.os fmtmsg.os strtoimax.os strtoumax.os wcstoimax.os wcstoumax.os getcontext.os setcontext.os makecontext.os swapcontext.os inlines.os add_n.os addmul_1.os cmp.os divmod_1.os divrem.os udiv_qrnnd.os lshift.os rshift.os mod_1.os mul.os mul_1.os mul_n.os sub_n.os submul_1.os dbl2mpn.os ldbl2mpn.os mpn2flt.os mpn2dbl.os mpn2ldbl.os grouping.os groupingwc.os tens_in_limb.os fpioconst.os mp_clz_tab.os makecontext-helper.os atexit.oS at_quick_exit.oS) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/stdlib/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/stdlib/stubsT [...]/tschwinge/Roger_Whittaker.build/stdlib/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/stdlib'
make  subdir=stdio-common -C stdio-common ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/stdio-common'
/usr/bin/install -c -m 644 stdio_ext.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/stdio_ext.h
/usr/bin/install -c -m 644 printf.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/printf.h
/usr/bin/install -c -m 644 bits/printf-ldbl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/printf-ldbl.h
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/bits/stdio_lim.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stdio_lim.h
(cd [...]/tschwinge/Roger_Whittaker.build/stdio-common/.; objdump -h ctermid.o cuserid.o _itoa.o _itowa.o itoa-digits.o itoa-udigits.o itowa-digits.o vfprintf.o vprintf.o printf_fp.o reg-printf.o printf-prs.o printf_fphex.o reg-modifier.o reg-type.o printf_size.o fprintf.o printf.o snprintf.o sprintf.o asprintf.o dprintf.o vfwprintf.o vfscanf.o vfwscanf.o fscanf.o scanf.o sscanf.o perror.o psignal.o tmpfile.o tmpfile64.o tmpnam.o tmpnam_r.o tempnam.o tempname.o getline.o getw.o putw.o remove.o rename.o renameat.o flockfile.o ftrylockfile.o funlockfile.o isoc99_scanf.o isoc99_vscanf.o isoc99_fscanf.o isoc99_vfscanf.o isoc99_sscanf.o isoc99_vsscanf.o psiginfo.o errlist.o siglist.o printf-parsemb.o printf-parsewc.o fxprintf.o ctermid.os cuserid.os _itoa.os _itowa.os itoa-digits.os itoa-udigits.os itowa-digits.os vfprintf.os vprintf.os printf_fp.os reg-printf.os printf-prs.os printf_fphex.os reg-modifier.os reg-type.os printf_size.os fprintf.os printf.os snprintf.os sprintf.os asprintf.os dprintf.os vfwprintf.os vfscanf.os vfwscanf.os fscanf.os scanf.os sscanf.os perror.os psignal.os tmpfile.os tmpfile64.os tmpnam.os tmpnam_r.os tempnam.os tempname.os getline.os getw.os putw.os remove.os rename.os renameat.os flockfile.os ftrylockfile.os funlockfile.os isoc99_scanf.os isoc99_vscanf.os isoc99_fscanf.os isoc99_vfscanf.os isoc99_sscanf.os isoc99_vsscanf.os psiginfo.os errlist.os siglist.os printf-parsemb.os printf-parsewc.os fxprintf.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/stdio-common/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/stdio-common/stubsT [...]/tschwinge/Roger_Whittaker.build/stdio-common/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/stdio-common'
make  subdir=libio -C libio ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/libio'
/usr/bin/install -c -m 644 stdio.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/stdio.h
/usr/bin/install -c -m 644 libio.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/libio.h
/usr/bin/install -c -m 644 ../sysdeps/generic/_G_config.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/_G_config.h
/usr/bin/install -c -m 644 bits/stdio.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stdio.h
/usr/bin/install -c -m 644 ../bits/stdio-lock.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stdio-lock.h
/usr/bin/install -c -m 644 ../bits/sys_errlist.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/sys_errlist.h
/usr/bin/install -c -m 644 bits/stdio2.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stdio2.h
/usr/bin/install -c -m 644 bits/stdio-ldbl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stdio-ldbl.h
/usr/bin/install -c -m 644 bits/libio-ldbl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/libio-ldbl.h
(cd [...]/tschwinge/Roger_Whittaker.build/libio/.; objdump -h filedoalloc.o iofclose.o iofdopen.o iofflush.o iofgetpos.o iofgets.o iofopen.o iofopncook.o iofputs.o iofread.o iofsetpos.o ioftell.o wfiledoalloc.o iofwrite.o iogetdelim.o iogetline.o iogets.o iopadn.o iopopen.o ioputs.o ioseekoff.o ioseekpos.o iosetbuffer.o iosetvbuf.o ioungetc.o iovsprintf.o iovsscanf.o iofgetpos64.o iofopen64.o iofsetpos64.o fputwc.o fputwc_u.o getwc.o getwc_u.o getwchar.o getwchar_u.o iofgetws.o iofgetws_u.o iofputws.o iofputws_u.o iogetwline.o iowpadn.o ioungetwc.o putwc.o putwc_u.o putwchar.o putwchar_u.o putchar.o putchar_u.o fwprintf.o swprintf.o vwprintf.o wprintf.o wscanf.o fwscanf.o vwscanf.o vswprintf.o iovswscanf.o swscanf.o wgenops.o wstrops.o wfileops.o iofwide.o fwide.o wmemstream.o clearerr.o feof.o ferror.o fileno.o fputc.o freopen.o fseek.o getc.o getchar.o memstream.o pclose.o putc.o rewind.o setbuf.o setlinebuf.o vasprintf.o iovdprintf.o vscanf.o vsnprintf.o obprintf.o fcloseall.o fseeko.o ftello.o freopen64.o fseeko64.o ftello64.o __fbufsize.o __freading.o __fwriting.o __freadable.o __fwritable.o __flbf.o __fpurge.o __fpending.o __fsetlocking.o libc_fatal.o fmemopen.o clearerr_u.o feof_u.o ferror_u.o fputc_u.o getc_u.o getchar_u.o iofflush_u.o putc_u.o peekc.o iofread_u.o iofwrite_u.o iofgets_u.o iofputs_u.o fileops.o genops.o stdfiles.o stdio.o strops.o filedoalloc.os iofclose.os iofdopen.os iofflush.os iofgetpos.os iofgets.os iofopen.os iofopncook.os iofputs.os iofread.os iofsetpos.os ioftell.os wfiledoalloc.os iofwrite.os iogetdelim.os iogetline.os iogets.os iopadn.os iopopen.os ioputs.os ioseekoff.os ioseekpos.os iosetbuffer.os iosetvbuf.os ioungetc.os iovsprintf.os iovsscanf.os iofgetpos64.os iofopen64.os iofsetpos64.os fputwc.os fputwc_u.os getwc.os getwc_u.os getwchar.os getwchar_u.os iofgetws.os iofgetws_u.os iofputws.os iofputws_u.os iogetwline.os iowpadn.os ioungetwc.os putwc.os putwc_u.os putwchar.os putwchar_u.os putchar.os putchar_u.os fwprintf.os swprintf.os vwprintf.os wprintf.os wscanf.os fwscanf.os vwscanf.os vswprintf.os iovswscanf.os swscanf.os wgenops.os wstrops.os wfileops.os iofwide.os fwide.os wmemstream.os clearerr.os feof.os ferror.os fileno.os fputc.os freopen.os fseek.os getc.os getchar.os memstream.os pclose.os putc.os rewind.os setbuf.os setlinebuf.os vasprintf.os iovdprintf.os vscanf.os vsnprintf.os obprintf.os fcloseall.os fseeko.os ftello.os freopen64.os fseeko64.os ftello64.os __fbufsize.os __freading.os __fwriting.os __freadable.os __fwritable.os __flbf.os __fpurge.os __fpending.os __fsetlocking.os libc_fatal.os fmemopen.os oldiofopen.os oldiofdopen.os oldiofclose.os oldiopopen.os oldpclose.os oldtmpfile.os oldiofgetpos.os oldiofgetpos64.os oldiofsetpos.os oldiofsetpos64.os clearerr_u.os feof_u.os ferror_u.os fputc_u.os getc_u.os getchar_u.os iofflush_u.os putc_u.os peekc.os iofread_u.os iofwrite_u.os iofgets_u.os iofputs_u.os fileops.os genops.os stdfiles.os stdio.os strops.os oldfileops.os oldstdfiles.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/libio/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/libio/stubsT [...]/tschwinge/Roger_Whittaker.build/libio/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/libio'
make  subdir=dlfcn -C dlfcn ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/dlfcn'
/usr/bin/install -c -m 644 ../bits/dlfcn.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/dlfcn.h
/usr/bin/install -c -m 644 dlfcn.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/dlfcn.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/dlfcn/libdl.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libdl-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libdl-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libdl-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libdl-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libdl.so.2` [...]/tschwinge/Roger_Whittaker.build.install/lib/libdl.so.2 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libdl.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libdl.so.2 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libdl.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libdl.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libdl.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/dlfcn/libdl.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libdl.a
(cd [...]/tschwinge/Roger_Whittaker.build/dlfcn/.; objdump -h sdlopen.o sdlclose.o sdlsym.o sdlvsym.o sdlerror.o sdladdr.o sdladdr1.o sdlinfo.o sdlmopen.o dlopen.o dlclose.o dlsym.o dlvsym.o dlerror.o dladdr.o dladdr1.o dlinfo.o dlmopen.o dlopen.os dlclose.os dlsym.os dlvsym.os dlerror.os dladdr.os dladdr1.os dlinfo.os dlmopen.os dlfcn.os dlopenold.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/dlfcn/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/dlfcn/stubsT [...]/tschwinge/Roger_Whittaker.build/dlfcn/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/dlfcn'
make  subdir=malloc -C malloc ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/malloc'
/usr/bin/install -c -m 644 malloc.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/malloc.h
/usr/bin/install -c -m 644 obstack.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/obstack.h
/usr/bin/install -c -m 644 mcheck.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mcheck.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/malloc/libmemusage.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libmemusage.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libmemusage.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libmemusage.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/malloc/libmcheck.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libmcheck.a
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/malloc/mtrace [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/mtrace.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/mtrace.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/mtrace
(cd [...]/tschwinge/Roger_Whittaker.build/malloc/.; objdump -h malloc.o morecore.o mcheck.o mtrace.o obstack.o set-freeres.o thread-freeres.o malloc.os morecore.os mcheck.os mtrace.os obstack.os set-freeres.os thread-freeres.os mcheck-init.o libmcheck.a memusage.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/malloc/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/malloc/stubsT [...]/tschwinge/Roger_Whittaker.build/malloc/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/malloc'
make  subdir=string -C string ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/string'
/usr/bin/install -c -m 644 string.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/string.h
/usr/bin/install -c -m 644 strings.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/strings.h
/usr/bin/install -c -m 644 memory.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/memory.h
/usr/bin/install -c -m 644 endian.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/endian.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/endian.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/endian.h
/usr/bin/install -c -m 644 argz.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/argz.h
/usr/bin/install -c -m 644 envz.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/envz.h
/usr/bin/install -c -m 644 byteswap.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/byteswap.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/byteswap.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/byteswap.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/byteswap-16.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/byteswap-16.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/string.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/string.h
/usr/bin/install -c -m 644 bits/string2.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/string2.h
/usr/bin/install -c -m 644 bits/string3.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/string3.h
(cd [...]/tschwinge/Roger_Whittaker.build/string/.; objdump -h strcat.o strchr.o strcmp.o strcoll.o strcpy.o strcspn.o strverscmp.o strdup.o strndup.o strerror.o _strerror.o strlen.o strnlen.o strncat.o strncmp.o strncpy.o strrchr.o strpbrk.o strsignal.o strspn.o strstr.o strtok.o strtok_r.o strxfrm.o memchr.o memcmp.o memmove.o memset.o mempcpy.o bcopy.o bzero.o ffs.o ffsll.o stpcpy.o stpncpy.o strcasecmp.o strncase.o strcasecmp_l.o strncase_l.o memccpy.o memcpy.o wordcopy.o strsep.o strcasestr.o swab.o strfry.o memfrob.o memmem.o rawmemchr.o strchrnul.o argz-append.o argz-count.o argz-create.o argz-ctsep.o argz-next.o argz-delete.o argz-extract.o argz-insert.o argz-stringify.o argz-addsep.o argz-replace.o envz.o basename.o strcoll_l.o strxfrm_l.o string-inlines.o memrchr.o xpg-strerror.o strerror_l.o strcat.os strchr.os strcmp.os strcoll.os strcpy.os strcspn.os strverscmp.os strdup.os strndup.os strerror.os _strerror.os strlen.os strnlen.os strncat.os strncmp.os strncpy.os strrchr.os strpbrk.os strsignal.os strspn.os strstr.os strtok.os strtok_r.os strxfrm.os memchr.os memcmp.os memmove.os memset.os mempcpy.os bcopy.os bzero.os ffs.os ffsll.os stpcpy.os stpncpy.os strcasecmp.os strncase.os strcasecmp_l.os strncase_l.os memccpy.os memcpy.os wordcopy.os strsep.os strcasestr.os swab.os strfry.os memfrob.os memmem.os rawmemchr.os strchrnul.os argz-append.os argz-count.os argz-create.os argz-ctsep.os argz-next.os argz-delete.os argz-extract.os argz-insert.os argz-stringify.os argz-addsep.os argz-replace.os envz.os basename.os strcoll_l.os strxfrm_l.os string-inlines.os memrchr.os xpg-strerror.os strerror_l.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/string/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/string/stubsT [...]/tschwinge/Roger_Whittaker.build/string/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/string'
make  subdir=wcsmbs -C wcsmbs ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/wcsmbs'
/usr/bin/install -c -m 644 wchar.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/wchar.h
/usr/bin/install -c -m 644 ../bits/wchar.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/wchar.h
/usr/bin/install -c -m 644 bits/wchar2.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/wchar2.h
/usr/bin/install -c -m 644 bits/wchar-ldbl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/wchar-ldbl.h
/usr/bin/install -c -m 644 uchar.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/uchar.h
(cd [...]/tschwinge/Roger_Whittaker.build/wcsmbs/.; objdump -h wcscat.o wcschr.o wcscmp.o wcscpy.o wcscspn.o wcsdup.o wcslen.o wcsncat.o wcsncmp.o wcsncpy.o wcspbrk.o wcsrchr.o wcsspn.o wcstok.o wcsstr.o wmemchr.o wmemcmp.o wmemcpy.o wmemmove.o wmemset.o wcpcpy.o wcpncpy.o wmempcpy.o btowc.o wctob.o mbsinit.o mbrlen.o mbrtowc.o wcrtomb.o mbsrtowcs.o wcsrtombs.o mbsnrtowcs.o wcsnrtombs.o wcsnlen.o wcschrnul.o wcstol.o wcstoul.o wcstoll.o wcstoull.o wcstod.o wcstold.o wcstof.o wcstol_l.o wcstoul_l.o wcstoll_l.o wcstoull_l.o wcstod_l.o wcstold_l.o wcstof_l.o wcscoll.o wcsxfrm.o wcwidth.o wcswidth.o wcscoll_l.o wcsxfrm_l.o wcscasecmp.o wcsncase.o wcscasecmp_l.o wcsncase_l.o wcsmbsload.o mbsrtowcs_l.o isoc99_wscanf.o isoc99_vwscanf.o isoc99_fwscanf.o isoc99_vfwscanf.o isoc99_swscanf.o isoc99_vswscanf.o mbrtoc16.o c16rtomb.o wcscat.os wcschr.os wcscmp.os wcscpy.os wcscspn.os wcsdup.os wcslen.os wcsncat.os wcsncmp.os wcsncpy.os wcspbrk.os wcsrchr.os wcsspn.os wcstok.os wcsstr.os wmemchr.os wmemcmp.os wmemcpy.os wmemmove.os wmemset.os wcpcpy.os wcpncpy.os wmempcpy.os btowc.os wctob.os mbsinit.os mbrlen.os mbrtowc.os wcrtomb.os mbsrtowcs.os wcsrtombs.os mbsnrtowcs.os wcsnrtombs.os wcsnlen.os wcschrnul.os wcstol.os wcstoul.os wcstoll.os wcstoull.os wcstod.os wcstold.os wcstof.os wcstol_l.os wcstoul_l.os wcstoll_l.os wcstoull_l.os wcstod_l.os wcstold_l.os wcstof_l.os wcscoll.os wcsxfrm.os wcwidth.os wcswidth.os wcscoll_l.os wcsxfrm_l.os wcscasecmp.os wcsncase.os wcscasecmp_l.os wcsncase_l.os wcsmbsload.os mbsrtowcs_l.os isoc99_wscanf.os isoc99_vwscanf.os isoc99_fwscanf.os isoc99_vfwscanf.os isoc99_swscanf.os isoc99_vswscanf.os mbrtoc16.os c16rtomb.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/wcsmbs/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/wcsmbs/stubsT [...]/tschwinge/Roger_Whittaker.build/wcsmbs/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/wcsmbs'
make  subdir=timezone -C timezone ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/timezone'
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/timezone/tzselect [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/tzselect.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/tzselect.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/tzselect
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/timezone/zic [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin/zic.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin/zic.new [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin/zic
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/timezone/zdump [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin/zdump.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin/zdump.new [...]/tschwinge/Roger_Whittaker.build.install/usr/sbin/zdump
(cd [...]/tschwinge/Roger_Whittaker.build/timezone/.; objdump -h scheck.o ialloc.o) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/timezone/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/timezone/stubsT [...]/tschwinge/Roger_Whittaker.build/timezone/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/timezone'
make  subdir=time -C time ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/time'
/usr/bin/install -c -m 644 time.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/time.h
/usr/bin/install -c -m 644 sys/time.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/time.h
/usr/bin/install -c -m 644 sys/timeb.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/timeb.h
/usr/bin/install -c -m 644 ../bits/time.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/time.h
(cd [...]/tschwinge/Roger_Whittaker.build/time/.; objdump -h offtime.o asctime.o clock.o ctime.o ctime_r.o difftime.o gmtime.o localtime.o mktime.o time.o gettimeofday.o settimeofday.o adjtime.o tzset.o tzfile.o getitimer.o setitimer.o stime.o dysize.o timegm.o ftime.o getdate.o strptime.o strptime_l.o strftime.o wcsftime.o strftime_l.o wcsftime_l.o timespec_get.o era.o alt_digit.o lc-time-cleanup.o offtime.os asctime.os clock.os ctime.os ctime_r.os difftime.os gmtime.os localtime.os mktime.os time.os gettimeofday.os settimeofday.os adjtime.os tzset.os tzfile.os getitimer.os setitimer.os stime.os dysize.os timegm.os ftime.os getdate.os strptime.os strptime_l.os strftime.os wcsftime.os strftime_l.os wcsftime_l.os timespec_get.os era.os alt_digit.os lc-time-cleanup.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/time/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/time/stubsT [...]/tschwinge/Roger_Whittaker.build/time/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/time'
make  subdir=dirent -C dirent ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/dirent'
/usr/bin/install -c -m 644 dirent.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/dirent.h
/usr/bin/install -c -m 644 ../bits/dirent.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/dirent.h
(cd [...]/tschwinge/Roger_Whittaker.build/dirent/.; objdump -h opendir.o closedir.o readdir.o readdir_r.o rewinddir.o seekdir.o telldir.o scandir.o alphasort.o versionsort.o getdents.o getdents64.o dirfd.o readdir64.o readdir64_r.o scandir64.o alphasort64.o versionsort64.o fdopendir.o scandirat.o scandirat64.o opendir.os closedir.os readdir.os readdir_r.os rewinddir.os seekdir.os telldir.os scandir.os alphasort.os versionsort.os getdents.os getdents64.os dirfd.os readdir64.os readdir64_r.os scandir64.os alphasort64.os versionsort64.os fdopendir.os scandirat.os scandirat64.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/dirent/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/dirent/stubsT [...]/tschwinge/Roger_Whittaker.build/dirent/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/dirent'
make  subdir=grp -C grp ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/grp'
/usr/bin/install -c -m 644 grp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/grp.h
(cd [...]/tschwinge/Roger_Whittaker.build/grp/.; objdump -h fgetgrent.o initgroups.o setgroups.o getgrent.o getgrgid.o getgrnam.o putgrent.o getgrent_r.o getgrgid_r.o getgrnam_r.o fgetgrent_r.o fgetgrent.os initgroups.os setgroups.os getgrent.os getgrgid.os getgrnam.os putgrent.os getgrent_r.os getgrgid_r.os getgrnam_r.os fgetgrent_r.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/grp/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/grp/stubsT [...]/tschwinge/Roger_Whittaker.build/grp/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/grp'
make  subdir=pwd -C pwd ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/pwd'
/usr/bin/install -c -m 644 pwd.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/pwd.h
(cd [...]/tschwinge/Roger_Whittaker.build/pwd/.; objdump -h fgetpwent.o getpw.o putpwent.o getpwent.o getpwnam.o getpwuid.o getpwent_r.o getpwnam_r.o getpwuid_r.o fgetpwent_r.o fgetpwent.os getpw.os putpwent.os getpwent.os getpwnam.os getpwuid.os getpwent_r.os getpwnam_r.os getpwuid_r.os fgetpwent_r.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/pwd/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/pwd/stubsT [...]/tschwinge/Roger_Whittaker.build/pwd/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/pwd'
make  subdir=posix -C posix ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/posix'
/usr/bin/install -c -m 644 sys/utsname.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/utsname.h
/usr/bin/install -c -m 644 sys/times.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/times.h
/usr/bin/install -c -m 644 sys/wait.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/wait.h
/usr/bin/install -c -m 644 sys/types.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/types.h
/usr/bin/install -c -m 644 unistd.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/unistd.h
/usr/bin/install -c -m 644 glob.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/glob.h
/usr/bin/install -c -m 644 regex.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/regex.h
/usr/bin/install -c -m 644 wordexp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/wordexp.h
/usr/bin/install -c -m 644 fnmatch.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/fnmatch.h
/usr/bin/install -c -m 644 getopt.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/getopt.h
/usr/bin/install -c -m 644 ../bits/types.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/types.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/typesizes.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/typesizes.h
/usr/bin/install -c -m 644 ../bits/pthreadtypes.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/pthreadtypes.h
/usr/bin/install -c -m 644 bits/posix1_lim.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/posix1_lim.h
/usr/bin/install -c -m 644 bits/posix2_lim.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/posix2_lim.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/posix_opt.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/posix_opt.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/local_lim.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/local_lim.h
/usr/bin/install -c -m 644 tar.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/tar.h
/usr/bin/install -c -m 644 ../bits/utsname.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/utsname.h
/usr/bin/install -c -m 644 ../bits/confname.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/confname.h
/usr/bin/install -c -m 644 ../bits/waitflags.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/waitflags.h
/usr/bin/install -c -m 644 ../bits/waitstatus.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/waitstatus.h
/usr/bin/install -c -m 644 sys/unistd.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/unistd.h
/usr/bin/install -c -m 644 sched.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sched.h
/usr/bin/install -c -m 644 ../bits/sched.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/sched.h
/usr/bin/install -c -m 644 re_comp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/re_comp.h
/usr/bin/install -c -m 644 wait.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/wait.h
/usr/bin/install -c -m 644 ../bits/environments.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/environments.h
/usr/bin/install -c -m 644 cpio.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/cpio.h
/usr/bin/install -c -m 644 ../sysdeps/generic/sys/sysmacros.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/sysmacros.h
/usr/bin/install -c -m 644 spawn.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/spawn.h
/usr/bin/install -c -m 644 bits/unistd.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/unistd.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/posix/getconf [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/getconf.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/getconf.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/getconf
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/libexec/getconf
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/libexec
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/libexec/getconf
while read spec; do \
	  ln -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/getconf [...]/tschwinge/Roger_Whittaker.build.install/usr/libexec/getconf/$spec.new || /usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/getconf [...]/tschwinge/Roger_Whittaker.build.install/usr/libexec/getconf/$spec.new; \
	  mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/libexec/getconf/$spec.new [...]/tschwinge/Roger_Whittaker.build.install/usr/libexec/getconf/$spec; \
	done < [...]/tschwinge/Roger_Whittaker.build/posix/getconf.speclist
(cd [...]/tschwinge/Roger_Whittaker.build/posix/.; objdump -h uname.o times.o wait.o waitpid.o wait3.o wait4.o waitid.o alarm.o sleep.o pause.o nanosleep.o fork.o vfork.o _exit.o execve.o fexecve.o execv.o execle.o execl.o execvp.o execlp.o execvpe.o getpid.o getppid.o getuid.o geteuid.o getgid.o getegid.o getgroups.o setuid.o setgid.o group_member.o getpgid.o setpgid.o getpgrp.o bsd-getpgrp.o setpgrp.o getsid.o setsid.o getresuid.o getresgid.o setresuid.o setresgid.o pathconf.o sysconf.o fpathconf.o glob.o glob64.o fnmatch.o regex.o confstr.o getopt.o getopt1.o getopt_init.o sched_setp.o sched_getp.o sched_sets.o sched_gets.o sched_yield.o sched_primax.o sched_primin.o sched_rr_gi.o sched_getaffinity.o sched_setaffinity.o getaddrinfo.o gai_strerror.o wordexp.o pread.o pwrite.o pread64.o pwrite64.o spawn_faction_init.o spawn_faction_destroy.o spawn_faction_addclose.o spawn_faction_addopen.o spawn_faction_adddup2.o spawnattr_init.o spawnattr_destroy.o spawnattr_getdefault.o spawnattr_setdefault.o spawnattr_getflags.o spawnattr_setflags.o spawnattr_getpgroup.o spawnattr_setpgroup.o spawn.o spawnp.o spawni.o spawnattr_getsigmask.o spawnattr_getschedpolicy.o spawnattr_getschedparam.o spawnattr_setsigmask.o spawnattr_setschedpolicy.o spawnattr_setschedparam.o posix_madvise.o get_child_max.o sched_cpucount.o sched_cpualloc.o sched_cpufree.o init-posix.o environ.o uname.os times.os wait.os waitpid.os wait3.os wait4.os waitid.os alarm.os sleep.os pause.os nanosleep.os fork.os vfork.os _exit.os execve.os fexecve.os execv.os execle.os execl.os execvp.os execlp.os execvpe.os getpid.os getppid.os getuid.os geteuid.os getgid.os getegid.os getgroups.os setuid.os setgid.os group_member.os getpgid.os setpgid.os getpgrp.os bsd-getpgrp.os setpgrp.os getsid.os setsid.os getresuid.os getresgid.os setresuid.os setresgid.os pathconf.os sysconf.os fpathconf.os glob.os glob64.os fnmatch.os regex.os confstr.os getopt.os getopt1.os getopt_init.os sched_setp.os sched_getp.os sched_sets.os sched_gets.os sched_yield.os sched_primax.os sched_primin.os sched_rr_gi.os sched_getaffinity.os sched_setaffinity.os getaddrinfo.os gai_strerror.os wordexp.os pread.os pwrite.os pread64.os pwrite64.os spawn_faction_init.os spawn_faction_destroy.os spawn_faction_addclose.os spawn_faction_addopen.os spawn_faction_adddup2.os spawnattr_init.os spawnattr_destroy.os spawnattr_getdefault.os spawnattr_setdefault.os spawnattr_getflags.os spawnattr_setflags.os spawnattr_getpgroup.os spawnattr_setpgroup.os spawn.os spawnp.os spawni.os spawnattr_getsigmask.os spawnattr_getschedpolicy.os spawnattr_getschedparam.os spawnattr_setsigmask.os spawnattr_setschedpolicy.os spawnattr_setschedparam.os posix_madvise.os get_child_max.os sched_cpucount.os sched_cpualloc.os sched_cpufree.os init-posix.os environ.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/posix/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/posix/stubsT [...]/tschwinge/Roger_Whittaker.build/posix/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/posix'
make  subdir=io -C io ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/io'
/usr/bin/install -c -m 644 sys/stat.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/stat.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/stat.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stat.h
/usr/bin/install -c -m 644 sys/statfs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/statfs.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/statfs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/statfs.h
/usr/bin/install -c -m 644 sys/vfs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/vfs.h
/usr/bin/install -c -m 644 sys/statvfs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/statvfs.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/statvfs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/statvfs.h
/usr/bin/install -c -m 644 fcntl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/fcntl.h
/usr/bin/install -c -m 644 sys/fcntl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/fcntl.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/fcntl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/fcntl.h
/usr/bin/install -c -m 644 poll.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/poll.h
/usr/bin/install -c -m 644 sys/poll.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/poll.h
/usr/bin/install -c -m 644 ../bits/poll.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/poll.h
/usr/bin/install -c -m 644 bits/fcntl2.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/fcntl2.h
/usr/bin/install -c -m 644 bits/poll2.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/poll2.h
/usr/bin/install -c -m 644 utime.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/utime.h
/usr/bin/install -c -m 644 ftw.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/ftw.h
/usr/bin/install -c -m 644 fts.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/fts.h
/usr/bin/install -c -m 644 sys/sendfile.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/sendfile.h
(cd [...]/tschwinge/Roger_Whittaker.build/io/.; objdump -h utime.o mkfifo.o mkfifoat.o stat.o fstat.o lstat.o stat64.o fstat64.o lstat64.o fstatat.o fstatat64.o xstat.o fxstat.o lxstat.o xstat64.o fxstat64.o lxstat64.o mknod.o mknodat.o xmknod.o xmknodat.o fxstatat.o fxstatat64.o statfs.o fstatfs.o statfs64.o fstatfs64.o statvfs.o fstatvfs.o statvfs64.o fstatvfs64.o umask.o chmod.o fchmod.o lchmod.o fchmodat.o mkdir.o mkdirat.o open.o open_2.o open64.o open64_2.o openat.o openat_2.o openat64.o openat64_2.o read.o write.o lseek.o lseek64.o access.o euidaccess.o faccessat.o fcntl.o flock.o lockf.o lockf64.o close.o dup.o dup2.o dup3.o pipe.o pipe2.o creat.o creat64.o chdir.o fchdir.o getcwd.o getwd.o getdirname.o chown.o fchown.o lchown.o fchownat.o ttyname.o ttyname_r.o isatty.o link.o linkat.o symlink.o symlinkat.o readlink.o readlinkat.o unlink.o unlinkat.o rmdir.o ftw.o ftw64.o fts.o poll.o ppoll.o posix_fadvise.o posix_fadvise64.o posix_fallocate.o posix_fallocate64.o sendfile.o sendfile64.o utimensat.o futimens.o have_o_cloexec.o utime.os mkfifo.os mkfifoat.os xstat.os fxstat.os lxstat.os xstat64.os fxstat64.os lxstat64.os xmknod.os xmknodat.os fxstatat.os fxstatat64.os statfs.os fstatfs.os statfs64.os fstatfs64.os statvfs.os fstatvfs.os statvfs64.os fstatvfs64.os umask.os chmod.os fchmod.os lchmod.os fchmodat.os mkdir.os mkdirat.os open.os open_2.os open64.os open64_2.os openat.os openat_2.os openat64.os openat64_2.os read.os write.os lseek.os lseek64.os access.os euidaccess.os faccessat.os fcntl.os flock.os lockf.os lockf64.os close.os dup.os dup2.os dup3.os pipe.os pipe2.os creat.os creat64.os chdir.os fchdir.os getcwd.os getwd.os getdirname.os chown.os fchown.os lchown.os fchownat.os ttyname.os ttyname_r.os isatty.os link.os linkat.os symlink.os symlinkat.os readlink.os readlinkat.os unlink.os unlinkat.os rmdir.os ftw.os ftw64.os fts.os poll.os ppoll.os posix_fadvise.os posix_fadvise64.os posix_fallocate.os posix_fallocate64.os sendfile.os sendfile64.os utimensat.os futimens.os have_o_cloexec.os stat.oS fstat.oS lstat.oS stat64.oS fstat64.oS lstat64.oS fstatat.oS fstatat64.oS mknod.oS mknodat.oS) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/io/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/io/stubsT [...]/tschwinge/Roger_Whittaker.build/io/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/io'
make  subdir=termios -C termios ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/termios'
/usr/bin/install -c -m 644 termios.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/termios.h
/usr/bin/install -c -m 644 ../bits/termios.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/termios.h
/usr/bin/install -c -m 644 ../sysdeps/generic/sys/ttydefaults.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/ttydefaults.h
/usr/bin/install -c -m 644 sys/termios.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/termios.h
/usr/bin/install -c -m 644 sys/ttychars.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/ttychars.h
(cd [...]/tschwinge/Roger_Whittaker.build/termios/.; objdump -h speed.o cfsetspeed.o tcsetattr.o tcgetattr.o tcgetpgrp.o tcsetpgrp.o tcdrain.o tcflow.o tcflush.o tcsendbrk.o cfmakeraw.o tcgetsid.o speed.os cfsetspeed.os tcsetattr.os tcgetattr.os tcgetpgrp.os tcsetpgrp.os tcdrain.os tcflow.os tcflush.os tcsendbrk.os cfmakeraw.os tcgetsid.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/termios/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/termios/stubsT [...]/tschwinge/Roger_Whittaker.build/termios/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/termios'
make  subdir=resource -C resource ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/resource'
/usr/bin/install -c -m 644 sys/resource.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/resource.h
/usr/bin/install -c -m 644 ../bits/resource.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/resource.h
/usr/bin/install -c -m 644 sys/vlimit.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/vlimit.h
/usr/bin/install -c -m 644 sys/vtimes.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/vtimes.h
/usr/bin/install -c -m 644 ulimit.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/ulimit.h
(cd [...]/tschwinge/Roger_Whittaker.build/resource/.; objdump -h getrlimit.o setrlimit.o getrlimit64.o setrlimit64.o getrusage.o ulimit.o vlimit.o vtimes.o getpriority.o setpriority.o nice.o getrlimit.os setrlimit.os getrlimit64.os setrlimit64.os getrusage.os ulimit.os vlimit.os vtimes.os getpriority.os setpriority.os nice.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/resource/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/resource/stubsT [...]/tschwinge/Roger_Whittaker.build/resource/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/resource'
make  subdir=misc -C misc ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/misc'
/usr/bin/install -c -m 644 sys/uio.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/uio.h
/usr/bin/install -c -m 644 ../bits/uio.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/uio.h
/usr/bin/install -c -m 644 sys/ioctl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/ioctl.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/ioctls.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/ioctls.h
/usr/bin/install -c -m 644 ../bits/ioctl-types.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/ioctl-types.h
/usr/bin/install -c -m 644 ../sysdeps/generic/sys/ptrace.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/ptrace.h
/usr/bin/install -c -m 644 sys/file.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/file.h
/usr/bin/install -c -m 644 sys/dir.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/dir.h
/usr/bin/install -c -m 644 sys/cdefs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/cdefs.h
/usr/bin/install -c -m 644 ar.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/ar.h
/usr/bin/install -c -m 644 ../sysdeps/generic/a.out.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/a.out.h
/usr/bin/install -c -m 644 libgen.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/libgen.h
/usr/bin/install -c -m 644 stab.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/stab.h
/usr/bin/install -c -m 644 bits/stab.def [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stab.def
/usr/bin/install -c -m 644 sgtty.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sgtty.h
/usr/bin/install -c -m 644 ttyent.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/ttyent.h
/usr/bin/install -c -m 644 ../sysdeps/generic/paths.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/paths.h
/usr/bin/install -c -m 644 ../sysdeps/mach/sys/reboot.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/reboot.h
/usr/bin/install -c -m 644 sys/mman.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/mman.h
/usr/bin/install -c -m 644 sys/param.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/param.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/param.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/param.h
/usr/bin/install -c -m 644 fstab.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/fstab.h
/usr/bin/install -c -m 644 mntent.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mntent.h
/usr/bin/install -c -m 644 search.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/search.h
/usr/bin/install -c -m 644 err.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/err.h
/usr/bin/install -c -m 644 error.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/error.h
/usr/bin/install -c -m 644 sys/queue.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/queue.h
/usr/bin/install -c -m 644 sysexits.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sysexits.h
/usr/bin/install -c -m 644 syscall.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/syscall.h
/usr/bin/install -c -m 644 ../sysdeps/mach/sys/syscall.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/syscall.h
/usr/bin/install -c -m 644 ../sysdeps/generic/sys/swap.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/swap.h
/usr/bin/install -c -m 644 sys/select.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/select.h
/usr/bin/install -c -m 644 ustat.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/ustat.h
/usr/bin/install -c -m 644 sys/ustat.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/ustat.h
/usr/bin/install -c -m 644 ../bits/ustat.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/ustat.h
/usr/bin/install -c -m 644 ../sysdeps/generic/sys/sysinfo.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/sysinfo.h
/usr/bin/install -c -m 644 regexp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/regexp.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/select.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/select.h
/usr/bin/install -c -m 644 ../bits/mman.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/mman.h
/usr/bin/install -c -m 644 sys/xattr.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/xattr.h
/usr/bin/install -c -m 644 syslog.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/syslog.h
/usr/bin/install -c -m 644 sys/syslog.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/syslog.h
/usr/bin/install -c -m 644 bits/syslog.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/syslog.h
/usr/bin/install -c -m 644 bits/syslog-ldbl.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/syslog-ldbl.h
/usr/bin/install -c -m 644 ../bits/syslog-path.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/syslog-path.h
/usr/bin/install -c -m 644 bits/error.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/error.h
/usr/bin/install -c -m 644 bits/select2.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/select2.h
/usr/bin/install -c -m 644 ../sysdeps/generic/bits/hwcap.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/hwcap.h
/usr/bin/install -c -m 644 sys/auxv.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/auxv.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/i386/sys/io.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/io.h
/usr/bin/install -c -m 644 ../sysdeps/gnu/sys/mtio.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/mtio.h
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/misc/libbsd-compat.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libbsd-compat.a
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/misc/libg.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libg.a
(cd [...]/tschwinge/Roger_Whittaker.build/misc/.; objdump -h brk.o sbrk.o sstk.o ioctl.o readv.o writev.o preadv.o preadv64.o pwritev.o pwritev64.o setreuid.o setregid.o seteuid.o setegid.o getpagesize.o getdtsz.o gethostname.o sethostname.o getdomain.o setdomain.o select.o pselect.o acct.o chroot.o fsync.o sync.o fdatasync.o syncfs.o reboot.o gethostid.o sethostid.o revoke.o vhangup.o swapon.o swapoff.o mktemp.o mkstemp.o mkstemp64.o mkdtemp.o mkostemp.o mkostemp64.o mkstemps.o mkstemps64.o mkostemps.o mkostemps64.o ualarm.o usleep.o gtty.o stty.o ptrace.o fstab.o mntent.o mntent_r.o utimes.o lutimes.o futimes.o futimesat.o truncate.o ftruncate.o truncate64.o ftruncate64.o chflags.o fchflags.o insremque.o getttyent.o getusershell.o getpass.o ttyslot.o syslog.o syscall.o daemon.o mmap.o mmap64.o munmap.o mprotect.o msync.o madvise.o mincore.o remap_file_pages.o mlock.o munlock.o mlockall.o munlockall.o efgcvt.o efgcvt_r.o qefgcvt.o qefgcvt_r.o hsearch.o hsearch_r.o tsearch.o lsearch.o err.o error.o ustat.o getsysstats.o dirname.o regexp.o getloadavg.o getclktck.o fgetxattr.o flistxattr.o fremovexattr.o fsetxattr.o getxattr.o listxattr.o lgetxattr.o llistxattr.o lremovexattr.o lsetxattr.o removexattr.o setxattr.o getauxval.o ifunc-impl-list.o init-misc.o ioperm.o brk.os sbrk.os sstk.os ioctl.os readv.os writev.os preadv.os preadv64.os pwritev.os pwritev64.os setreuid.os setregid.os seteuid.os setegid.os getpagesize.os getdtsz.os gethostname.os sethostname.os getdomain.os setdomain.os select.os pselect.os acct.os chroot.os fsync.os sync.os fdatasync.os syncfs.os reboot.os gethostid.os sethostid.os revoke.os vhangup.os swapon.os swapoff.os mktemp.os mkstemp.os mkstemp64.os mkdtemp.os mkostemp.os mkostemp64.os mkstemps.os mkstemps64.os mkostemps.os mkostemps64.os ualarm.os usleep.os gtty.os stty.os ptrace.os fstab.os mntent.os mntent_r.os utimes.os lutimes.os futimes.os futimesat.os truncate.os ftruncate.os truncate64.os ftruncate64.os chflags.os fchflags.os insremque.os getttyent.os getusershell.os getpass.os ttyslot.os syslog.os syscall.os daemon.os mmap.os mmap64.os munmap.os mprotect.os msync.os madvise.os mincore.os remap_file_pages.os mlock.os munlock.os mlockall.os munlockall.os efgcvt.os efgcvt_r.os qefgcvt.os qefgcvt_r.os hsearch.os hsearch_r.os tsearch.os lsearch.os err.os error.os ustat.os getsysstats.os dirname.os regexp.os getloadavg.os getclktck.os fgetxattr.os flistxattr.os fremovexattr.os fsetxattr.os getxattr.os listxattr.os lgetxattr.os llistxattr.os lremovexattr.os lsetxattr.os removexattr.os setxattr.os getauxval.os ifunc-impl-list.os init-misc.os ioperm.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/misc/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/misc/stubsT [...]/tschwinge/Roger_Whittaker.build/misc/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/misc'
make  subdir=socket -C socket ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/socket'
/usr/bin/install -c -m 644 sys/socket.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/socket.h
/usr/bin/install -c -m 644 sys/un.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/un.h
/usr/bin/install -c -m 644 ../sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/sockaddr.h
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/bits/socket.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/socket.h
/usr/bin/install -c -m 644 bits/socket2.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/socket2.h
/usr/bin/install -c -m 644 ../sysdeps/generic/sys/socketvar.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/socketvar.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net
/usr/bin/install -c -m 644 ../sysdeps/gnu/net/if.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net/if.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/net/ethernet.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net/ethernet.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/net/if_arp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net/if_arp.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/net/if_ether.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net/if_ether.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/net/if_ppp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net/if_ppp.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net
/usr/bin/install -c -m 644 ../sysdeps/mach/hurd/net/route.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/net/route.h
(cd [...]/tschwinge/Roger_Whittaker.build/socket/.; objdump -h accept.o bind.o connect.o getpeername.o getsockname.o getsockopt.o listen.o recv.o recvfrom.o recvmsg.o send.o sendmsg.o sendto.o setsockopt.o shutdown.o socket.o socketpair.o isfdtype.o opensock.o sockatmark.o accept4.o recvmmsg.o sendmmsg.o have_sock_cloexec.o cmsg_nxthdr.o accept.os bind.os connect.os getpeername.os getsockname.os getsockopt.os listen.os recv.os recvfrom.os recvmsg.os send.os sendmsg.os sendto.os setsockopt.os shutdown.os socket.os socketpair.os isfdtype.os opensock.os sockatmark.os accept4.os recvmmsg.os sendmmsg.os have_sock_cloexec.os cmsg_nxthdr.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/socket/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/socket/stubsT [...]/tschwinge/Roger_Whittaker.build/socket/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/socket'
make  subdir=sysvipc -C sysvipc ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/sysvipc'
/usr/bin/install -c -m 644 sys/ipc.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/ipc.h
/usr/bin/install -c -m 644 sys/msg.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/msg.h
/usr/bin/install -c -m 644 sys/sem.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/sem.h
/usr/bin/install -c -m 644 sys/shm.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/shm.h
/usr/bin/install -c -m 644 ../bits/ipctypes.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/ipctypes.h
/usr/bin/install -c -m 644 ../sysdeps/gnu/bits/ipc.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/ipc.h
/usr/bin/install -c -m 644 ../sysdeps/gnu/bits/msq.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/msq.h
/usr/bin/install -c -m 644 ../sysdeps/gnu/bits/sem.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/sem.h
/usr/bin/install -c -m 644 ../sysdeps/gnu/bits/shm.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/shm.h
(cd [...]/tschwinge/Roger_Whittaker.build/sysvipc/.; objdump -h ftok.o msgsnd.o msgrcv.o msgget.o msgctl.o semop.o semget.o semctl.o semtimedop.o shmat.o shmdt.o shmget.o shmctl.o ftok.os msgsnd.os msgrcv.os msgget.os msgctl.os semop.os semget.os semctl.os semtimedop.os shmat.os shmdt.os shmget.os shmctl.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/sysvipc/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/sysvipc/stubsT [...]/tschwinge/Roger_Whittaker.build/sysvipc/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/sysvipc'
make  subdir=gmon -C gmon ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/gmon'
/usr/bin/install -c -m 644 sys/gmon.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/gmon.h
/usr/bin/install -c -m 644 sys/gmon_out.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/gmon_out.h
/usr/bin/install -c -m 644 sys/profil.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/profil.h
(cd [...]/tschwinge/Roger_Whittaker.build/gmon/.; objdump -h gmon.o mcount.o profil.o sprofil.o bb_init_func.o bb_exit_func.o prof-freq.o i386-mcount.o gmon.os mcount.os profil.os sprofil.os prof-freq.os i386-mcount.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/gmon/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/gmon/stubsT [...]/tschwinge/Roger_Whittaker.build/gmon/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/gmon'
make  subdir=gnulib -C gnulib ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/gnulib'
> [...]/tschwinge/Roger_Whittaker.build/gnulib/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/gnulib'
make  subdir=wctype -C wctype ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/wctype'
/usr/bin/install -c -m 644 wctype.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/wctype.h
(cd [...]/tschwinge/Roger_Whittaker.build/wctype/.; objdump -h wcfuncs.o wctype.o iswctype.o wctrans.o towctrans.o wcfuncs_l.o wctype_l.o iswctype_l.o wctrans_l.o towctrans_l.o wcfuncs.os wctype.os iswctype.os wctrans.os towctrans.os wcfuncs_l.os wctype_l.os iswctype_l.os wctrans_l.os towctrans_l.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/wctype/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/wctype/stubsT [...]/tschwinge/Roger_Whittaker.build/wctype/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/wctype'
make  subdir=manual -C manual ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/manual'
> [...]/tschwinge/Roger_Whittaker.build/manual/stubs
pwd=`pwd`; \
	/usr/bin/perl libm-err-tab.pl $pwd/.. > [...]/tschwinge/Roger_Whittaker.build/manual/libm-err-tmp
/bin/sh ../scripts/move-if-change [...]/tschwinge/Roger_Whittaker.build/manual/libm-err-tmp [...]/tschwinge/Roger_Whittaker.build/manual/libm-err.texi
touch [...]/tschwinge/Roger_Whittaker.build/manual/stamp-libm-err
echo "@ifclear PKGVERS" > [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers-tmp
echo "@set PKGVERS" >> [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers-tmp
echo "@set PKGVERSION (GNU libc) " >> [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers-tmp
if [ "(GNU libc) " = "(GNU libc) " ]; then \
	  echo "@set PKGVERSION_DEFAULT" >> [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers-tmp; \
	fi
echo "@set REPORT_BUGS_TO @uref{http://www.gnu.org/software/libc/bugs.html}" >> [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers-tmp
echo "@end ifclear" >> [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers-tmp
/bin/sh ../scripts/move-if-change [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers-tmp [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers.texi
touch [...]/tschwinge/Roger_Whittaker.build/manual/stamp-pkgvers
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/stpcpy.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/stpcpy.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/stpcpy.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/stpcpy.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/strdupa.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/strdupa.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/strdupa.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/strdupa.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/strncat.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/strncat.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/strncat.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/strncat.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/search.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/search.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/search.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/search.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/rprintf.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/rprintf.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/rprintf.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/rprintf.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/memopen.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/memopen.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/memopen.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/memopen.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/memstrm.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/memstrm.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/memstrm.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/memstrm.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/fmtmsgexpl.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/fmtmsgexpl.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/fmtmsgexpl.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/fmtmsgexpl.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/select.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/select.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/select.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/select.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/dir.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/dir.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/dir.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/dir.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/dir2.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/dir2.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/dir2.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/dir2.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/pipe.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/pipe.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/pipe.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/pipe.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/popen.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/popen.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/popen.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/popen.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/mkfsock.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/mkfsock.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/mkfsock.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/mkfsock.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/mkisock.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/mkisock.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/mkisock.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/mkisock.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/isockad.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/isockad.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/isockad.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/isockad.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/inetcli.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/inetcli.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/inetcli.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/inetcli.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/inetsrv.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/inetsrv.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/inetsrv.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/inetsrv.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/filesrv.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/filesrv.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/filesrv.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/filesrv.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/filecli.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/filecli.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/filecli.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/filecli.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/termios.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/termios.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/termios.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/termios.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/timeval_subtract.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/timeval_subtract.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/timeval_subtract.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/timeval_subtract.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/strftim.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/strftim.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/strftim.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/strftim.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/setjmp.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/setjmp.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/setjmp.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/setjmp.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/swapcontext.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/swapcontext.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/swapcontext.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/swapcontext.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/sigh1.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/sigh1.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/sigh1.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/sigh1.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/sigusr.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/sigusr.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/sigusr.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/sigusr.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/testopt.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/testopt.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/testopt.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/testopt.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/longopt.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/longopt.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/longopt.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/longopt.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/argp-ex1.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex1.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex1.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex1.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/argp-ex2.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex2.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex2.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex2.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/argp-ex3.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex3.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex3.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex3.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/argp-ex4.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex4.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex4.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex4.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/subopt.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/subopt.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/subopt.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/subopt.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/atexit.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/atexit.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/atexit.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/atexit.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/db.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/db.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/db.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/db.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/mygetpass.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/mygetpass.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/mygetpass.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/mygetpass.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/genpass.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/genpass.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/genpass.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/genpass.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/testpass.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/testpass.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/testpass.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/testpass.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/execinfo.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/execinfo.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/execinfo.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/execinfo.c.texi
sed -e '1,/^\*\/$/d'				\
	    -e 's,[{}],@&,g'				\
	    -e 's,/\*\(@.*\)\*/,\1,g'			\
	    -e 's,/\*  *,/* @r{,g' -e 's,  *\*/,} */,'	\
	    -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\
	    examples/add.c | expand > [...]/tschwinge/Roger_Whittaker.build/manual/add.c.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/add.c.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/add.c.texi
gawk -f summary.awk intro.texi creature.texi errno.texi memory.texi ctype.texi string.texi charset.texi locale.texi message.texi search.texi pattern.texi io.texi stdio.texi llio.texi filesys.texi pipe.texi socket.texi terminal.texi syslog.texi math.texi arith.texi time.texi resource.texi setjmp.texi signal.texi startup.texi getopt.texi argp.texi process.texi job.texi nss.texi nsswitch.texi users.texi sysinfo.texi conf.texi crypt.texi debug.texi threads.texi lang.texi header.texi install.texi macros.texi maint.texi platform.texi contrib.texi freemanuals.texi lgpl-2.1.texi fdl-1.3.texi [...]/tschwinge/Roger_Whittaker.build/manual/stpcpy.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/strdupa.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/strncat.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/search.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/rprintf.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/memopen.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/memstrm.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/fmtmsgexpl.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/select.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/dir.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/dir2.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/pipe.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/popen.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/mkfsock.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/mkisock.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/isockad.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/inetcli.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/inetsrv.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/filesrv.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/filecli.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/termios.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/libm-err.texi [...]/tschwinge/Roger_Whittaker.build/manual/timeval_subtract.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/strftim.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/setjmp.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/swapcontext.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/sigh1.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/sigusr.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/testopt.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/longopt.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex1.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex2.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex3.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex4.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/subopt.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/atexit.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/db.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/mygetpass.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/genpass.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/testpass.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/execinfo.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/add.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers.texi | sort -t'' -df -k 1,1 | tr '\014' '\012' \
		> [...]/tschwinge/Roger_Whittaker.build/manual/summary-tmp
/bin/sh ../scripts/move-if-change [...]/tschwinge/Roger_Whittaker.build/manual/summary-tmp [...]/tschwinge/Roger_Whittaker.build/manual/summary.texi
touch [...]/tschwinge/Roger_Whittaker.build/manual/stamp-summary
AWK=gawk /bin/sh libc-texinfo.sh [...]/tschwinge/Roger_Whittaker.build/manual/ \
				'intro.texi errno.texi memory.texi ctype.texi string.texi charset.texi locale.texi message.texi search.texi pattern.texi io.texi stdio.texi llio.texi filesys.texi pipe.texi socket.texi terminal.texi syslog.texi math.texi arith.texi time.texi resource.texi setjmp.texi signal.texi startup.texi process.texi job.texi nss.texi users.texi sysinfo.texi conf.texi crypt.texi debug.texi threads.texi' \
			       '' \
			       'lang.texi header.texi install.texi maint.texi platform.texi contrib.texi freemanuals.texi lgpl-2.1.texi fdl-1.3.texi'
AWK=gawk /bin/sh libc-texinfo.sh [...]/tschwinge/Roger_Whittaker.build/manual/ \
				'intro.texi errno.texi memory.texi ctype.texi string.texi charset.texi locale.texi message.texi search.texi pattern.texi io.texi stdio.texi llio.texi filesys.texi pipe.texi socket.texi terminal.texi syslog.texi math.texi arith.texi time.texi resource.texi setjmp.texi signal.texi startup.texi process.texi job.texi nss.texi users.texi sysinfo.texi conf.texi crypt.texi debug.texi threads.texi' \
			       '' \
			       'lang.texi header.texi install.texi maint.texi platform.texi contrib.texi freemanuals.texi lgpl-2.1.texi fdl-1.3.texi'
(echo "@dircategory GNU C library functions and macros";	\
	 echo "@direntry";						\
	 gawk -f xtract-typefun.awk intro.texi creature.texi errno.texi memory.texi ctype.texi string.texi charset.texi locale.texi message.texi search.texi pattern.texi io.texi stdio.texi llio.texi filesys.texi pipe.texi socket.texi terminal.texi syslog.texi math.texi arith.texi time.texi resource.texi setjmp.texi signal.texi startup.texi getopt.texi argp.texi process.texi job.texi nss.texi nsswitch.texi users.texi sysinfo.texi conf.texi crypt.texi debug.texi threads.texi lang.texi header.texi install.texi macros.texi maint.texi platform.texi contrib.texi freemanuals.texi lgpl-2.1.texi fdl-1.3.texi [...]/tschwinge/Roger_Whittaker.build/manual/stpcpy.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/strdupa.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/strncat.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/search.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/rprintf.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/memopen.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/memstrm.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/fmtmsgexpl.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/select.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/dir.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/dir2.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/pipe.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/popen.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/mkfsock.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/mkisock.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/isockad.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/inetcli.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/inetsrv.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/filesrv.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/filecli.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/termios.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/libm-err.texi [...]/tschwinge/Roger_Whittaker.build/manual/timeval_subtract.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/strftim.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/setjmp.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/swapcontext.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/sigh1.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/sigusr.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/testopt.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/longopt.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex1.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex2.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex3.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/argp-ex4.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/subopt.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/atexit.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/db.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/mygetpass.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/genpass.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/testpass.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/execinfo.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/add.c.texi [...]/tschwinge/Roger_Whittaker.build/manual/summary.texi [...]/tschwinge/Roger_Whittaker.build/manual/pkgvers.texi | sort;						\
	 echo "@end direntry") > [...]/tschwinge/Roger_Whittaker.build/manual/dir-add.texi.new
mv -f [...]/tschwinge/Roger_Whittaker.build/manual/dir-add.texi.new [...]/tschwinge/Roger_Whittaker.build/manual/dir-add.texi
echo "@set VERSION 2.17.90" > [...]/tschwinge/Roger_Whittaker.build/manual/version-tmp
/bin/sh ../scripts/move-if-change [...]/tschwinge/Roger_Whittaker.build/manual/version-tmp [...]/tschwinge/Roger_Whittaker.build/manual/version.texi
touch [...]/tschwinge/Roger_Whittaker.build/manual/stamp-version
LANGUAGE=C LC_ALL=C makeinfo -P [...]/tschwinge/Roger_Whittaker.build/manual/ --output=[...]/tschwinge/Roger_Whittaker.build/manual/libc.info libc.texinfo
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/info
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/info
for file in [...]/tschwinge/Roger_Whittaker.build/manual/libc.info*; do \
	  /usr/bin/install -c -m 644 $file [...]/tschwinge/Roger_Whittaker.build.install/usr/share/info/; \
	done
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/libc.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcrt.a
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/libc_nonshared.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcrt_nonshared.a
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/libc.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libc.so.0.3` [...]/tschwinge/Roger_Whittaker.build.install/lib/libc.so.0.3 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
install-info: warning: don't call programs like install-info with an absolute path,
install-info: warning: /usr/sbin/install-info provided by dpkg is deprecated and will go away soon;
install-info: warning: its replacement lives in /usr/bin/.
This is not dpkg install-info anymore, but GNU install-info
See the man page for ginstall-info for command line arguments
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/manual'
make  subdir=shadow -C shadow ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/shadow'
/usr/bin/install -c -m 644 shadow.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/shadow.h
(cd [...]/tschwinge/Roger_Whittaker.build/shadow/.; objdump -h getspent.o getspnam.o sgetspent.o fgetspent.o putspent.o getspent_r.o getspnam_r.o sgetspent_r.o fgetspent_r.o lckpwdf.o getspent.os getspnam.os sgetspent.os fgetspent.os putspent.os getspent_r.os getspnam_r.os sgetspent_r.os fgetspent_r.os lckpwdf.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/shadow/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/shadow/stubsT [...]/tschwinge/Roger_Whittaker.build/shadow/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/shadow'
make  subdir=gshadow -C gshadow ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/gshadow'
/usr/bin/install -c -m 644 gshadow.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gshadow.h
(cd [...]/tschwinge/Roger_Whittaker.build/gshadow/.; objdump -h getsgent.o getsgnam.o sgetsgent.o fgetsgent.o putsgent.o getsgent_r.o getsgnam_r.o sgetsgent_r.o fgetsgent_r.o getsgent.os getsgnam.os sgetsgent.os fgetsgent.os putsgent.os getsgent_r.os getsgnam_r.os sgetsgent_r.os fgetsgent_r.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/gshadow/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/gshadow/stubsT [...]/tschwinge/Roger_Whittaker.build/gshadow/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/gshadow'
make  subdir=po -C po ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/po'
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/be/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/be
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/be/LC_MESSAGES
/usr/bin/install -c -m 644 be.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/be/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/bg/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/bg
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/bg/LC_MESSAGES
/usr/bin/install -c -m 644 bg.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/bg/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ca/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ca
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ca/LC_MESSAGES
/usr/bin/install -c -m 644 ca.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ca/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/cs/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/cs
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/cs/LC_MESSAGES
/usr/bin/install -c -m 644 cs.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/cs/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/da/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/da
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/da/LC_MESSAGES
/usr/bin/install -c -m 644 da.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/da/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/de/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/de
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/de/LC_MESSAGES
/usr/bin/install -c -m 644 de.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/de/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/el/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/el
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/el/LC_MESSAGES
/usr/bin/install -c -m 644 el.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/el/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/en_GB/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/en_GB
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/en_GB/LC_MESSAGES
/usr/bin/install -c -m 644 en_GB.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/en_GB/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/eo/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/eo
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/eo/LC_MESSAGES
/usr/bin/install -c -m 644 eo.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/eo/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/es/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/es
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/es/LC_MESSAGES
/usr/bin/install -c -m 644 es.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/es/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/fi/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/fi
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/fi/LC_MESSAGES
/usr/bin/install -c -m 644 fi.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/fi/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/fr/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/fr
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/fr/LC_MESSAGES
/usr/bin/install -c -m 644 fr.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/fr/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/gl/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/gl
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/gl/LC_MESSAGES
/usr/bin/install -c -m 644 gl.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/gl/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/hr/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/hr
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/hr/LC_MESSAGES
/usr/bin/install -c -m 644 hr.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/hr/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/hu/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/hu
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/hu/LC_MESSAGES
/usr/bin/install -c -m 644 hu.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/hu/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ia/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ia
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ia/LC_MESSAGES
/usr/bin/install -c -m 644 ia.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ia/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/id/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/id
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/id/LC_MESSAGES
/usr/bin/install -c -m 644 id.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/id/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/it/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/it
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/it/LC_MESSAGES
/usr/bin/install -c -m 644 it.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/it/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ja/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ja
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ja/LC_MESSAGES
/usr/bin/install -c -m 644 ja.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ja/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ko/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ko
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ko/LC_MESSAGES
/usr/bin/install -c -m 644 ko.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ko/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/lt/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/lt
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/lt/LC_MESSAGES
/usr/bin/install -c -m 644 lt.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/lt/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/nb/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/nb
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/nb/LC_MESSAGES
/usr/bin/install -c -m 644 nb.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/nb/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/nl/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/nl
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/nl/LC_MESSAGES
/usr/bin/install -c -m 644 nl.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/nl/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/pl/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/pl
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/pl/LC_MESSAGES
/usr/bin/install -c -m 644 pl.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/pl/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/pt_BR/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/pt_BR
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/pt_BR/LC_MESSAGES
/usr/bin/install -c -m 644 pt_BR.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/pt_BR/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ru/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ru
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ru/LC_MESSAGES
/usr/bin/install -c -m 644 ru.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/ru/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/rw/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/rw
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/rw/LC_MESSAGES
/usr/bin/install -c -m 644 rw.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/rw/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/sk/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/sk
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/sk/LC_MESSAGES
/usr/bin/install -c -m 644 sk.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/sk/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/sv/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/sv
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/sv/LC_MESSAGES
/usr/bin/install -c -m 644 sv.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/sv/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/tr/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/tr
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/tr/LC_MESSAGES
/usr/bin/install -c -m 644 tr.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/tr/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/vi/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/vi
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/vi/LC_MESSAGES
/usr/bin/install -c -m 644 vi.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/vi/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/zh_CN/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/zh_CN
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/zh_CN/LC_MESSAGES
/usr/bin/install -c -m 644 zh_CN.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/zh_CN/LC_MESSAGES/libc.mo || exit 0
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/zh_TW/LC_MESSAGES
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/zh_TW
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/zh_TW/LC_MESSAGES
/usr/bin/install -c -m 644 zh_TW.mo [...]/tschwinge/Roger_Whittaker.build.install/usr/share/locale/zh_TW/LC_MESSAGES/libc.mo || exit 0
> [...]/tschwinge/Roger_Whittaker.build/po/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/po'
make  subdir=argp -C argp ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/argp'
/usr/bin/install -c -m 644 argp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/argp.h
(cd [...]/tschwinge/Roger_Whittaker.build/argp/.; objdump -h argp-ba.o argp-fmtstream.o argp-fs-xinl.o argp-help.o argp-parse.o argp-pv.o argp-pvh.o argp-xinl.o argp-eexst.o argp-ba.os argp-fmtstream.os argp-fs-xinl.os argp-help.os argp-parse.os argp-pv.os argp-pvh.os argp-xinl.os argp-eexst.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/argp/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/argp/stubsT [...]/tschwinge/Roger_Whittaker.build/argp/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/argp'
make  subdir=crypt -C crypt ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/crypt'
/usr/bin/install -c -m 644 crypt.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/crypt.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/crypt/libcrypt.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libcrypt-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libcrypt-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libcrypt-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libcrypt-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libcrypt.so.1` [...]/tschwinge/Roger_Whittaker.build.install/lib/libcrypt.so.1 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcrypt.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libcrypt.so.1 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcrypt.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcrypt.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcrypt.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/crypt/libcrypt.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcrypt.a
(cd [...]/tschwinge/Roger_Whittaker.build/crypt/.; objdump -h crypt-entry.o md5-crypt.o sha256-crypt.o sha512-crypt.o crypt.o crypt_util.o md5.o sha256.o sha512.o crypt-entry.os md5-crypt.os sha256-crypt.os sha512-crypt.os crypt.os crypt_util.os md5.os sha256.os sha512.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/crypt/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/crypt/stubsT [...]/tschwinge/Roger_Whittaker.build/crypt/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/crypt'
make  subdir=rt -C rt ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/rt'
/usr/bin/install -c -m 644 aio.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/aio.h
/usr/bin/install -c -m 644 mqueue.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/mqueue.h
/usr/bin/install -c -m 644 ../bits/mqueue.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/mqueue.h
/usr/bin/install -c -m 644 bits/mqueue2.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/mqueue2.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/rt/librt.so [...]/tschwinge/Roger_Whittaker.build.install/lib/librt-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/librt-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/librt-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/librt-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/librt.so.1` [...]/tschwinge/Roger_Whittaker.build.install/lib/librt.so.1 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/librt.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/librt.so.1 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/librt.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/librt.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/librt.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/rt/librt.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/librt.a
(cd [...]/tschwinge/Roger_Whittaker.build/rt/.; objdump -h get_clockfreq.o clock_getcpuclockid.o clock_getres.o clock_gettime.o clock_settime.o clock_nanosleep.o get_clockfreq.os clock_getcpuclockid.os clock_getres.os clock_gettime.os clock_settime.os clock_nanosleep.os aio_cancel.o aio_error.o aio_fsync.o aio_misc.o aio_read.o aio_read64.o aio_return.o aio_suspend.o aio_write.o aio_write64.o lio_listio.o lio_listio64.o aio_sigqueue.o aio_notify.o timer_create.o timer_delete.o timer_getoverr.o timer_gettime.o timer_settime.o shm_open.o shm_unlink.o mq_open.o mq_close.o mq_unlink.o mq_getattr.o mq_setattr.o mq_notify.o mq_send.o mq_receive.o mq_timedsend.o mq_timedreceive.o clock-compat.o aio_cancel.os aio_error.os aio_fsync.os aio_misc.os aio_read.os aio_read64.os aio_return.os aio_suspend.os aio_write.os aio_write64.os lio_listio.os lio_listio64.os aio_sigqueue.os aio_notify.os timer_create.os timer_delete.os timer_getoverr.os timer_gettime.os timer_settime.os shm_open.os shm_unlink.os mq_open.os mq_close.os mq_unlink.os mq_getattr.os mq_setattr.os mq_notify.os mq_send.os mq_receive.os mq_timedsend.os mq_timedreceive.os clock-compat.os rt-unwind-resume.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/rt/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/rt/stubsT [...]/tschwinge/Roger_Whittaker.build/rt/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/rt'
make  subdir=conform -C conform ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/conform'
> [...]/tschwinge/Roger_Whittaker.build/conform/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/conform'
make  subdir=debug -C debug ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/debug'
/usr/bin/install -c -m 644 execinfo.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/execinfo.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/debug/libSegFault.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libSegFault.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libSegFault.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libSegFault.so
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/debug/libpcprofile.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libpcprofile.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libpcprofile.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libpcprofile.so
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/debug/pcprofiledump [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/pcprofiledump.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/pcprofiledump.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/pcprofiledump
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/debug/xtrace [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/xtrace.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/xtrace.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/xtrace
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/debug/catchsegv [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/catchsegv.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/catchsegv.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/catchsegv
(cd [...]/tschwinge/Roger_Whittaker.build/debug/.; objdump -h backtrace.o backtracesyms.o backtracesymsfd.o noophooks.o memcpy_chk.o memmove_chk.o mempcpy_chk.o memset_chk.o stpcpy_chk.o strcat_chk.o strcpy_chk.o strncat_chk.o strncpy_chk.o stpncpy_chk.o sprintf_chk.o vsprintf_chk.o snprintf_chk.o vsnprintf_chk.o printf_chk.o fprintf_chk.o vprintf_chk.o vfprintf_chk.o gets_chk.o chk_fail.o readonly-area.o fgets_chk.o fgets_u_chk.o read_chk.o pread_chk.o pread64_chk.o recv_chk.o recvfrom_chk.o readlink_chk.o readlinkat_chk.o getwd_chk.o getcwd_chk.o realpath_chk.o fread_chk.o fread_u_chk.o wctomb_chk.o wcscpy_chk.o wmemcpy_chk.o wmemmove_chk.o wmempcpy_chk.o wcpcpy_chk.o wcsncpy_chk.o wcscat_chk.o wcsncat_chk.o wmemset_chk.o wcpncpy_chk.o swprintf_chk.o vswprintf_chk.o wprintf_chk.o fwprintf_chk.o vwprintf_chk.o vfwprintf_chk.o fgetws_chk.o fgetws_u_chk.o confstr_chk.o getgroups_chk.o ttyname_r_chk.o gethostname_chk.o getdomainname_chk.o wcrtomb_chk.o mbsnrtowcs_chk.o wcsnrtombs_chk.o mbsrtowcs_chk.o wcsrtombs_chk.o mbstowcs_chk.o wcstombs_chk.o asprintf_chk.o vasprintf_chk.o dprintf_chk.o vdprintf_chk.o obprintf_chk.o longjmp_chk.o ____longjmp_chk.o fdelt_chk.o poll_chk.o ppoll_chk.o stack_chk_fail.o fortify_fail.o warning-nop.o stack_chk_fail_local.o backtrace.os backtracesyms.os backtracesymsfd.os noophooks.os memcpy_chk.os memmove_chk.os mempcpy_chk.os memset_chk.os stpcpy_chk.os strcat_chk.os strcpy_chk.os strncat_chk.os strncpy_chk.os stpncpy_chk.os sprintf_chk.os vsprintf_chk.os snprintf_chk.os vsnprintf_chk.os printf_chk.os fprintf_chk.os vprintf_chk.os vfprintf_chk.os gets_chk.os chk_fail.os readonly-area.os fgets_chk.os fgets_u_chk.os read_chk.os pread_chk.os pread64_chk.os recv_chk.os recvfrom_chk.os readlink_chk.os readlinkat_chk.os getwd_chk.os getcwd_chk.os realpath_chk.os fread_chk.os fread_u_chk.os wctomb_chk.os wcscpy_chk.os wmemcpy_chk.os wmemmove_chk.os wmempcpy_chk.os wcpcpy_chk.os wcsncpy_chk.os wcscat_chk.os wcsncat_chk.os wmemset_chk.os wcpncpy_chk.os swprintf_chk.os vswprintf_chk.os wprintf_chk.os fwprintf_chk.os vwprintf_chk.os vfwprintf_chk.os fgetws_chk.os fgetws_u_chk.os confstr_chk.os getgroups_chk.os ttyname_r_chk.os gethostname_chk.os getdomainname_chk.os wcrtomb_chk.os mbsnrtowcs_chk.os wcsnrtombs_chk.os mbsrtowcs_chk.os wcsrtombs_chk.os mbstowcs_chk.os wcstombs_chk.os asprintf_chk.os vasprintf_chk.os dprintf_chk.os vdprintf_chk.os obprintf_chk.os longjmp_chk.os ____longjmp_chk.os fdelt_chk.os poll_chk.os ppoll_chk.os stack_chk_fail.os fortify_fail.os warning-nop.oS stack_chk_fail_local.oS segfault.os pcprofile.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/debug/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/debug/stubsT [...]/tschwinge/Roger_Whittaker.build/debug/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/debug'
make  subdir=libidn -C libidn ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/libidn'
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/libidn/libcidn.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libcidn-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libcidn-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libcidn-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libcidn-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libcidn.so.1` [...]/tschwinge/Roger_Whittaker.build.install/lib/libcidn.so.1 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcidn.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libcidn.so.1 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcidn.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcidn.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libcidn.so
(cd [...]/tschwinge/Roger_Whittaker.build/libidn/.; objdump -h idn-stub.o idn-stub.os punycode.os toutf8.os nfkc.os stringprep.os rfc3454.os profiles.os idna.os iconvme.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/libidn/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/libidn/stubsT [...]/tschwinge/Roger_Whittaker.build/libidn/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/libidn'
make  subdir=inet -C inet ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/inet'
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 netinet/ether.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/ether.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 netinet/in.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/in.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 ../sysdeps/generic/netinet/in_systm.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/in_systm.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 ../sysdeps/generic/netinet/if_ether.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/if_ether.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 netinet/igmp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/igmp.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 ../sysdeps/gnu/netinet/tcp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/tcp.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 ../sysdeps/generic/netinet/ip.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/ip.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa
/usr/bin/install -c -m 644 arpa/ftp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa/ftp.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa
/usr/bin/install -c -m 644 arpa/inet.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa/inet.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa
/usr/bin/install -c -m 644 arpa/telnet.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa/telnet.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa
/usr/bin/install -c -m 644 arpa/tftp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa/tftp.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/protocols
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/protocols
/usr/bin/install -c -m 644 protocols/routed.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/protocols/routed.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/protocols
/usr/bin/install -c -m 644 protocols/rwhod.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/protocols/rwhod.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/protocols
/usr/bin/install -c -m 644 protocols/talkd.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/protocols/talkd.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/protocols
/usr/bin/install -c -m 644 protocols/timed.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/protocols/timed.h
/usr/bin/install -c -m 644 aliases.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/aliases.h
/usr/bin/install -c -m 644 ifaddrs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/ifaddrs.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 netinet/ip6.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/ip6.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 netinet/icmp6.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/icmp6.h
/usr/bin/install -c -m 644 ../bits/in.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/in.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 ../sysdeps/gnu/netinet/udp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/udp.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet
/usr/bin/install -c -m 644 ../sysdeps/gnu/netinet/ip_icmp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netinet/ip_icmp.h
(cd [...]/tschwinge/Roger_Whittaker.build/inet/.; objdump -h htonl.o htons.o inet_lnaof.o inet_mkadr.o inet_netof.o inet_ntoa.o inet_net.o herrno.o herrno-loc.o gethstbyad.o gethstbyad_r.o gethstbynm.o gethstbynm2.o gethstbynm2_r.o gethstbynm_r.o gethstent.o gethstent_r.o getnetbyad.o getnetbyad_r.o getnetbynm.o getnetent.o getnetent_r.o getnetbynm_r.o getproto.o getproto_r.o getprtent.o getprtent_r.o getprtname.o getprtname_r.o getsrvbynm.o getsrvbynm_r.o getsrvbypt.o getsrvbypt_r.o getservent.o getservent_r.o getrpcent.o getrpcbyname.o getrpcbynumber.o getrpcent_r.o getrpcbyname_r.o getrpcbynumber_r.o ether_aton.o ether_aton_r.o ether_hton.o ether_line.o ether_ntoa.o ether_ntoa_r.o ether_ntoh.o rcmd.o rexec.o ruserpass.o getnetgrent_r.o getnetgrent.o getaliasent_r.o getaliasent.o getaliasname.o getaliasname_r.o in6_addr.o getnameinfo.o if_index.o ifaddrs.o inet6_option.o getipv4sourcefilter.o setipv4sourcefilter.o getsourcefilter.o setsourcefilter.o inet6_opt.o inet6_rth.o check_pf.o check_native.o ifreq.o htonl.os htons.os inet_lnaof.os inet_mkadr.os inet_netof.os inet_ntoa.os inet_net.os herrno.os herrno-loc.os gethstbyad.os gethstbyad_r.os gethstbynm.os gethstbynm2.os gethstbynm2_r.os gethstbynm_r.os gethstent.os gethstent_r.os getnetbyad.os getnetbyad_r.os getnetbynm.os getnetent.os getnetent_r.os getnetbynm_r.os getproto.os getproto_r.os getprtent.os getprtent_r.os getprtname.os getprtname_r.os getsrvbynm.os getsrvbynm_r.os getsrvbypt.os getsrvbypt_r.os getservent.os getservent_r.os getrpcent.os getrpcbyname.os getrpcbynumber.os getrpcent_r.os getrpcbyname_r.os getrpcbynumber_r.os ether_aton.os ether_aton_r.os ether_hton.os ether_line.os ether_ntoa.os ether_ntoa_r.os ether_ntoh.os rcmd.os rexec.os ruserpass.os getnetgrent_r.os getnetgrent.os getaliasent_r.os getaliasent.os getaliasname.os getaliasname_r.os in6_addr.os getnameinfo.os if_index.os ifaddrs.os inet6_option.os getipv4sourcefilter.os setipv4sourcefilter.os getsourcefilter.os setsourcefilter.os inet6_opt.os inet6_rth.os check_pf.os check_native.os ifreq.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/inet/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/inet/stubsT [...]/tschwinge/Roger_Whittaker.build/inet/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/inet'
make  subdir=resolv -C resolv ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/resolv'
/usr/bin/install -c -m 644 resolv.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/resolv.h
/usr/bin/install -c -m 644 netdb.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/netdb.h
/usr/bin/install -c -m 644 ../bits/netdb.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/netdb.h
/usr/bin/install -c -m 644 arpa/nameser.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa/nameser.h
/usr/bin/install -c -m 644 arpa/nameser_compat.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/arpa/nameser_compat.h
/usr/bin/install -c -m 644 sys/bitypes.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/bitypes.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/resolv/libresolv.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libresolv-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libresolv-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libresolv-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libresolv-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libresolv.so.2` [...]/tschwinge/Roger_Whittaker.build.install/lib/libresolv.so.2 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libresolv.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libresolv.so.2 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libresolv.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libresolv.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libresolv.so
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/resolv/libnss_dns.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_dns-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_dns-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_dns-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_dns-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_dns.so.2` [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_dns.so.2 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_dns.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_dns.so.2 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_dns.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_dns.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_dns.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/resolv/libresolv.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libresolv.a
(cd [...]/tschwinge/Roger_Whittaker.build/resolv/.; objdump -h herror.o inet_addr.o inet_ntop.o inet_pton.o nsap_addr.o res_init.o res_hconf.o res_libc.o res-state.o herror.os inet_addr.os inet_ntop.os inet_pton.os nsap_addr.os res_init.os res_hconf.os res_libc.os res-state.os gethnamaddr.o res_comp.o res_debug.o res_data.o res_mkquery.o res_query.o res_send.o inet_net_ntop.o inet_net_pton.o inet_neta.o base64.o ns_parse.o ns_name.o ns_netint.o ns_ttl.o ns_print.o ns_samedomain.o ns_date.o gethnamaddr.os res_comp.os res_debug.os res_data.os res_mkquery.os res_query.os res_send.os inet_net_ntop.os inet_net_pton.os inet_neta.os base64.os ns_parse.os ns_name.os ns_netint.os ns_ttl.os ns_print.os ns_samedomain.os ns_date.os dns-host.os dns-network.os dns-canon.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/resolv/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/resolv/stubsT [...]/tschwinge/Roger_Whittaker.build/resolv/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/resolv'
make  subdir=nss -C nss ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/nss'
/usr/bin/install -c -m 644 nss.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/nss.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/nss/libnss_files.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_files-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_files-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_files-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_files-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_files.so.2` [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_files.so.2 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_files.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_files.so.2 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_files.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_files.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_files.so
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/nss/libnss_db.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_db-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_db-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_db-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_db-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_db.so.2` [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_db.so.2 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_db.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_db.so.2 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_db.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_db.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_db.so
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/var/db
mkdir [...]/tschwinge/Roger_Whittaker.build.install/var
mkdir [...]/tschwinge/Roger_Whittaker.build.install/var/db
/usr/bin/install -c -m 644 db-Makefile [...]/tschwinge/Roger_Whittaker.build.install/var/db/Makefile
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/nss/getent [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/getent.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/getent.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/getent
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/nss/makedb [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/makedb.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/makedb.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/makedb
(cd [...]/tschwinge/Roger_Whittaker.build/nss/.; objdump -h nsswitch.o getnssent.o getnssent_r.o digits_dots.o proto-lookup.o service-lookup.o hosts-lookup.o network-lookup.o grp-lookup.o pwd-lookup.o rpc-lookup.o ethers-lookup.o spwd-lookup.o netgrp-lookup.o key-lookup.o alias-lookup.o sgrp-lookup.o nsswitch.os getnssent.os getnssent_r.os digits_dots.os proto-lookup.os service-lookup.os hosts-lookup.os network-lookup.os grp-lookup.os pwd-lookup.os rpc-lookup.os ethers-lookup.os spwd-lookup.os netgrp-lookup.os key-lookup.os alias-lookup.os sgrp-lookup.os xmalloc.o hash-string.o files-proto.os files-service.os files-hosts.os files-network.os files-grp.os files-pwd.os files-rpc.os files-ethers.os files-spwd.os files-netgrp.os files-key.os files-alias.os files-sgrp.os files-initgroups.os files-have_o_cloexec.os files-init.os db-proto.os db-service.os db-grp.os db-pwd.os db-rpc.os db-ethers.os db-spwd.os db-netgrp.os db-sgrp.os db-initgroups.os db-open.os db-init.os hash-string.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/nss/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/nss/stubsT [...]/tschwinge/Roger_Whittaker.build/nss/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/nss'
make  subdir=hesiod -C hesiod ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/hesiod'
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/hesiod/libnss_hesiod.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_hesiod-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_hesiod-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_hesiod-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_hesiod-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_hesiod.so.2` [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_hesiod.so.2 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_hesiod.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_hesiod.so.2 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_hesiod.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_hesiod.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_hesiod.so
(cd [...]/tschwinge/Roger_Whittaker.build/hesiod/.; objdump -h hesiod.os hesiod-grp.os hesiod-init.os hesiod-proto.os hesiod-pwd.os hesiod-service.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/hesiod/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/hesiod/stubsT [...]/tschwinge/Roger_Whittaker.build/hesiod/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/hesiod'
make  subdir=sunrpc -C sunrpc ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/sunrpc'
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpc
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpc
/usr/bin/install -c -m 644 rpc/netdb.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpc/netdb.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/bootparam_prot.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/bootparam_prot.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/nlm_prot.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/nlm_prot.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/rstat.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/rstat.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/yppasswd.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/yppasswd.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/klm_prot.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/klm_prot.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/rex.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/rex.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/sm_inter.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/sm_inter.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/mount.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/mount.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/rusers.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/rusers.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/spray.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/spray.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/nfs_prot.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/nfs_prot.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/rquota.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/rquota.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcsvc/key_prot.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/rpcsvc/key_prot.h
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/nfs
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/include/nfs
/usr/bin/install -c -m 644 ../sysdeps/generic/nfs/nfs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/nfs/nfs.h
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/sunrpc/librpcsvc.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/librpcsvc.a
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/etc
mkdir [...]/tschwinge/Roger_Whittaker.build.install/etc
/usr/bin/install -c -m 644 etc.rpc [...]/tschwinge/Roger_Whittaker.build.install/etc/rpc
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/sunrpc/rpcgen [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/rpcgen.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/rpcgen.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/rpcgen
(cd [...]/tschwinge/Roger_Whittaker.build/sunrpc/.; objdump -h auth_none.os authuxprot.os bindrsvprt.os clnt_raw.os clnt_simp.os rpc_dtable.os getrpcport.os pmap_clnt.os pm_getmaps.os pmap_prot.os pmap_prot2.os pmap_rmt.os rpc_prot.os rpc_common.os rpc_cmsg.os svc_auth.os svc_authux.os svc_raw.os svc_simple.os xdr_float.os xdr_rec.os publickey.os authdes_prot.os des_crypt.os des_impl.os des_soft.os key_prot.os openchild.os rtime.os svcauth_des.os clnt_unix.os svc_unix.os create_xid.os auth_des.os auth_unix.os clnt_gen.os clnt_perr.os clnt_tcp.os clnt_udp.os get_myaddr.os key_call.os netname.os pm_getport.os rpc_thread.os svc.os svc_tcp.os svc_udp.os xcrypt.os xdr_array.os xdr.os xdr_intXX_t.os xdr_mem.os xdr_ref.os xdr_sizeof.os xdr_stdio.os svc_run.os rpc_main.o rpc_hout.o rpc_cout.o rpc_parse.o rpc_scan.o rpc_util.o rpc_svcout.o rpc_clntout.o rpc_tblout.o rpc_sample.o cross-rpc_main.o cross-rpc_hout.o cross-rpc_cout.o cross-rpc_parse.o cross-rpc_scan.o cross-rpc_util.o cross-rpc_svcout.o cross-rpc_clntout.o cross-rpc_tblout.o cross-rpc_sample.o compat-auth_des.os compat-auth_unix.os compat-clnt_gen.os compat-clnt_perr.os compat-clnt_tcp.os compat-clnt_udp.os compat-get_myaddr.os compat-key_call.os compat-netname.os compat-pm_getport.os compat-rpc_thread.os compat-svc.os compat-svc_tcp.os compat-svc_udp.os compat-xcrypt.os compat-xdr_array.os compat-xdr.os compat-xdr_intXX_t.os compat-xdr_mem.os compat-xdr_ref.os compat-xdr_sizeof.os compat-xdr_stdio.os compat-svc_run.os xbootparam_prot.o xnlm_prot.o xrstat.o xyppasswd.o xklm_prot.o xrex.o xsm_inter.o xmount.o xrusers.o xspray.o xnfs_prot.o xrquota.o xkey_prot.o) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/sunrpc/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/sunrpc/stubsT [...]/tschwinge/Roger_Whittaker.build/sunrpc/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/sunrpc'
make  subdir=nis -C nis ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/nis'
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/nis/libnsl.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnsl-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libnsl-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libnsl-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libnsl-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnsl.so.1` [...]/tschwinge/Roger_Whittaker.build.install/lib/libnsl.so.1 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnsl.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libnsl.so.1 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnsl.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnsl.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnsl.so
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/nis/libnss_nis.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nis-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nis-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nis-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nis-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nis.so.2` [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nis.so.2 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_nis.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nis.so.2 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_nis.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_nis.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_nis.so
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/nis/libnss_nisplus.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nisplus-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nisplus-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nisplus-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nisplus-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nisplus.so.2` [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nisplus.so.2 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_nisplus.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_nisplus.so.2 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_nisplus.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_nisplus.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_nisplus.so
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/nis/libnss_compat.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_compat-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_compat-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_compat-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_compat-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_compat.so.2` [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_compat.so.2 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_compat.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libnss_compat.so.2 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_compat.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_compat.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnss_compat.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/nis/libnsl.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libnsl.a
(cd [...]/tschwinge/Roger_Whittaker.build/nis/.; objdump -h nis_hash.o nis_hash.os yp_xdr.o ypclnt.o ypupdate_xdr.o nis_subr.o nis_local_names.o nis_free.o nis_file.o nis_print.o nis_error.o nis_call.o nis_lookup.o nis_table.o nis_xdr.o nis_server.o nis_ping.o nis_checkpoint.o nis_mkdir.o nis_rmdir.o nis_getservlist.o nis_verifygroup.o nis_ismember.o nis_addmember.o nis_util.o nis_removemember.o nis_creategroup.o nis_destroygroup.o nis_print_group_entry.o nis_domain_of.o nis_domain_of_r.o nis_modify.o nis_remove.o nis_add.o nis_defaults.o nis_findserv.o nis_callback.o nis_clone_dir.o nis_clone_obj.o nis_clone_res.o nss-default.o yp_xdr.os ypclnt.os ypupdate_xdr.os nis_subr.os nis_local_names.os nis_free.os nis_file.os nis_print.os nis_error.os nis_call.os nis_lookup.os nis_table.os nis_xdr.os nis_server.os nis_ping.os nis_checkpoint.os nis_mkdir.os nis_rmdir.os nis_getservlist.os nis_verifygroup.os nis_ismember.os nis_addmember.os nis_util.os nis_removemember.os nis_creategroup.os nis_destroygroup.os nis_print_group_entry.os nis_domain_of.os nis_domain_of_r.os nis_modify.os nis_remove.os nis_add.os nis_defaults.os nis_findserv.os nis_callback.os nis_clone_dir.os nis_clone_obj.os nis_clone_res.os nss-default.os nis-proto.os nis-service.os nis-hosts.os nis-network.os nis-grp.os nis-pwd.os nis-rpc.os nis-ethers.os nis-spwd.os nis-netgrp.os nis-alias.os nis-publickey.os nis-initgroups.os nss-nis.os nisplus-proto.os nisplus-service.os nisplus-hosts.os nisplus-network.os nisplus-grp.os nisplus-pwd.os nisplus-rpc.os nisplus-ethers.os nisplus-spwd.os nisplus-netgrp.os nisplus-alias.os nisplus-publickey.os nisplus-parser.os nss-nisplus.os nisplus-initgroups.os compat-grp.os compat-pwd.os compat-spwd.os compat-initgroups.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/nis/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/nis/stubsT [...]/tschwinge/Roger_Whittaker.build/nis/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/nis'
make  subdir=nscd -C nscd ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/nscd'
(cd [...]/tschwinge/Roger_Whittaker.build/nscd/.; objdump -h nscd_getpw_r.o nscd_getgr_r.o nscd_gethst_r.o nscd_getai.o nscd_initgroups.o nscd_getserv_r.o nscd_netgroup.o nscd_helper.o nscd_getpw_r.os nscd_getgr_r.os nscd_gethst_r.os nscd_getai.os nscd_initgroups.os nscd_getserv_r.os nscd_netgroup.os nscd_helper.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/nscd/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/nscd/stubsT [...]/tschwinge/Roger_Whittaker.build/nscd/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/nscd'
make  subdir=streams -C streams ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/streams'
/usr/bin/install -c -m 644 stropts.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/stropts.h
/usr/bin/install -c -m 644 sys/stropts.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/sys/stropts.h
/usr/bin/install -c -m 644 ../bits/stropts.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/stropts.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/xtitypes.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/xtitypes.h
(cd [...]/tschwinge/Roger_Whittaker.build/streams/.; objdump -h isastream.o getmsg.o getpmsg.o putmsg.o putpmsg.o fattach.o fdetach.o isastream.os getmsg.os getpmsg.os putmsg.os putpmsg.os fattach.os fdetach.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/streams/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/streams/stubsT [...]/tschwinge/Roger_Whittaker.build/streams/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/streams'
make  subdir=login -C login ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/login'
/usr/bin/install -c -m 644 utmp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/utmp.h
/usr/bin/install -c -m 644 ../sysdeps/gnu/bits/utmp.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/utmp.h
/usr/bin/install -c -m 644 lastlog.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/lastlog.h
/usr/bin/install -c -m 644 pty.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/pty.h
/usr/bin/install -c -m 644 ../sysdeps/gnu/utmpx.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/utmpx.h
/usr/bin/install -c -m 644 ../sysdeps/gnu/bits/utmpx.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/utmpx.h
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/login/libutil.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libutil-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libutil-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libutil-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/libutil-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libutil.so.1` [...]/tschwinge/Roger_Whittaker.build.install/lib/libutil.so.1 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libutil.so.new
/bin/sh ../scripts/rellns-sh [...]/tschwinge/Roger_Whittaker.build.install/lib/libutil.so.1 [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libutil.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libutil.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libutil.so
/usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/login/libutil.a [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libutil.a
/usr/bin/install -c -m 4755 -o root [...]/tschwinge/Roger_Whittaker.build/login/pt_chown [...]/tschwinge/Roger_Whittaker.build.install/usr/libexec/pt_chown
/usr/bin/install: cannot change ownership of `[...]/tschwinge/Roger_Whittaker.build.install/usr/libexec/pt_chown': Operation not permitted
make[2]: [[...]/tschwinge/Roger_Whittaker.build.install/usr/libexec/pt_chown] Error 1 (ignored)
(cd [...]/tschwinge/Roger_Whittaker.build/login/.; objdump -h getlogin.o getlogin_r.o setlogin.o getlogin_r_chk.o getutent.o getutent_r.o getutid.o getutline.o getutid_r.o getutline_r.o utmp_file.o utmpname.o updwtmp.o getpt.o grantpt.o unlockpt.o ptsname.o ptsname_r_chk.o setutxent.o getutxent.o endutxent.o getutxid.o getutxline.o pututxline.o utmpxname.o updwtmpx.o getutmpx.o getutmp.o getlogin.os getlogin_r.os setlogin.os getlogin_r_chk.os getutent.os getutent_r.os getutid.os getutline.os getutid_r.os getutline_r.os utmp_file.os utmpname.os updwtmp.os getpt.os grantpt.os unlockpt.os ptsname.os ptsname_r_chk.os setutxent.os getutxent.os endutxent.os getutxid.os getutxline.os pututxline.os utmpxname.os updwtmpx.os getutmpx.os getutmp.os login.o login_tty.o logout.o logwtmp.o openpty.o forkpty.o login.os login_tty.os logout.os logwtmp.os openpty.os forkpty.os) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/login/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/login/stubsT [...]/tschwinge/Roger_Whittaker.build/login/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/login'
make  subdir=elf -C elf ..=../ subdir_install
make[2]: Entering directory `[...]/tschwinge/Roger_Whittaker/elf'
/usr/bin/install -c -m 644 elf.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/elf.h
/usr/bin/install -c -m 644 ../bits/elfclass.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/elfclass.h
/usr/bin/install -c -m 644 link.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/link.h
/usr/bin/install -c -m 644 ../sysdeps/x86/bits/link.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/bits/link.h
make -f [...]/tschwinge/Roger_Whittaker.build/elf/librtld.mk -f rtld-Rules
make[3]: Entering directory `[...]/tschwinge/Roger_Whittaker/elf'
make subdir=csu -C ../csu ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-divdi3.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/csu'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/csu'
make subdir=gmon -C ../gmon ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-profil.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/gmon'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/gmon'
make subdir=hurd -C ../hurd ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-hurdstartup.os rtld-lookup-retry.os rtld-errno-loc.os rtld-RPC_auth_user_authenticate.os rtld-RPC_proc_getpids.os rtld-RPC_proc_mark_exit.os rtld-RPC_exec_startup_get_info.os rtld-RPC_file_set_size.os rtld-RPC_dir_lookup.os rtld-RPC_file_get_translator.os rtld-RPC_io_write.os rtld-RPC_io_read.os rtld-RPC_io_seek.os rtld-RPC_io_stat.os rtld-RPC_io_reauthenticate.os rtld-RPC_io_map.os rtld-RPC_termctty_open_terminal.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/hurd'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/hurd'
make subdir=io -C ../io ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-lseek.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/io'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/io'
make subdir=mach -C ../mach ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-mach_thread_self.os rtld-mach_task_self.os rtld-swtch_pri.os rtld-vm_map.os rtld-vm_deallocate.os rtld-task_terminate.os rtld-mach_port_deallocate.os rtld-mach_init.os rtld-msg.os rtld-mig-reply.os rtld-mutex-solid.os rtld-mach_msg_trap.os rtld-mach_reply_port.os rtld-mach_host_self.os rtld-syscall_vm_map.os rtld-syscall_vm_deallocate.os rtld-syscall_task_terminate.os rtld-syscall_mach_port_deallocate.os rtld-setup-thread.os rtld-spin-solid.os rtld-spin-lock.os rtld-vm_allocate.os rtld-syscall_vm_allocate.os rtld-RPC_task_terminate_rpc.os rtld-RPC_thread_get_state.os rtld-RPC_thread_set_state.os rtld-RPC_vm_allocate_rpc.os rtld-RPC_vm_deallocate_rpc.os rtld-RPC_vm_protect.os rtld-RPC_vm_region.os rtld-RPC_vm_statistics.os rtld-RPC_task_get_special_port.os rtld-RPC_thread_create.os rtld-RPC_thread_suspend.os rtld-RPC_thread_resume.os rtld-RPC_vm_map_rpc.os rtld-RPC_task_enable_pc_sampling.os rtld-RPC_task_disable_pc_sampling.os rtld-RPC_i386_set_ldt.os rtld-RPC_i386_set_gdt.os rtld-RPC_mach_port_destroy.os rtld-RPC_mach_port_deallocate_rpc.os rtld-RPC_mach_port_mod_refs.os rtld-RPC_host_info.os rtld-mig-alloc.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/mach'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/mach'
make subdir=misc -C ../misc ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-getpagesize.os rtld-munmap.os rtld-mprotect.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/misc'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/misc'
make subdir=posix -C ../posix ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-environ.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/posix'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/posix'
make subdir=setjmp -C ../setjmp ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-setjmp.os rtld-__longjmp.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/setjmp'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/setjmp'
make subdir=string -C ../string ..=../ objdir=[...]/tschwinge/Roger_Whittaker.build -f Makefile -f ../elf/rtld-Rules rtld-all rtld-modules='rtld-strchr.os rtld-strcmp.os rtld-strcpy.os rtld-strlen.os rtld-strnlen.os rtld-memchr.os rtld-memcmp.os rtld-memmove.os rtld-memset.os rtld-mempcpy.os rtld-stpcpy.os rtld-memcpy.os rtld-rawmemchr.os rtld-argz-count.os rtld-argz-extract.os rtld-stpncpy.os'
make[4]: Entering directory `[...]/tschwinge/Roger_Whittaker/string'
make[4]: Nothing to be done for `rtld-all'.
make[4]: Leaving directory `[...]/tschwinge/Roger_Whittaker/string'
make[3]: Leaving directory `[...]/tschwinge/Roger_Whittaker/elf'
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/elf/ld.so [...]/tschwinge/Roger_Whittaker.build.install/lib/ld-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/ld-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/ld-2.17.90.so
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/libc.so [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so.new [...]/tschwinge/Roger_Whittaker.build.install/lib/libc-2.17.90.so
echo `../scripts/rellns-sh -p [...]/tschwinge/Roger_Whittaker.build.install/lib/ld-2.17.90.so [...]/tschwinge/Roger_Whittaker.build.install/lib/ld.so.1` [...]/tschwinge/Roger_Whittaker.build.install/lib/ld.so.1 >> [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/audit
mkdir [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/audit
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/elf/sotruss-lib.so [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/audit/sotruss-lib.so.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/audit/sotruss-lib.so.new [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/audit/sotruss-lib.so
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/elf/sprof [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/sprof.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/sprof.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/sprof
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/elf/pldd [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/pldd.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/pldd.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/pldd
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/elf/ldd [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/ldd.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/ldd.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/ldd
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/elf/sotruss [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/sotruss.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/sotruss.new [...]/tschwinge/Roger_Whittaker.build.install/usr/bin/sotruss
.././scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/sbin
mkdir [...]/tschwinge/Roger_Whittaker.build.install/sbin
/usr/bin/install -c [...]/tschwinge/Roger_Whittaker.build/elf/sln [...]/tschwinge/Roger_Whittaker.build.install/sbin/sln.new
mv -f [...]/tschwinge/Roger_Whittaker.build.install/sbin/sln.new [...]/tschwinge/Roger_Whittaker.build.install/sbin/sln
(cd [...]/tschwinge/Roger_Whittaker.build/elf/.; objdump -h dl-load.o dl-lookup.o dl-object.o dl-reloc.o dl-deps.o dl-hwcaps.o dl-runtime.o dl-error.o dl-init.o dl-fini.o dl-debug.o dl-misc.o dl-version.o dl-profile.o dl-conflict.o dl-tls.o dl-origin.o dl-scope.o dl-execstack.o dl-open.o dl-close.o dl-trampoline.o dl-support.o dl-iteratephdr.o dl-addr.o enbl-secure.o dl-profstub.o dl-libc.o dl-sym.o dl-tsd.o dl-sysdep.o tlsdesc.o dl-tlsdesc.o dl-iteratephdr.os dl-addr.os dl-profstub.os dl-libc.os dl-sym.os dl-tsd.os rtld.os dl-load.os dl-lookup.os dl-object.os dl-reloc.os dl-deps.os dl-hwcaps.os dl-runtime.os dl-error.os dl-init.os dl-fini.os dl-debug.os dl-misc.os dl-version.os dl-profile.os dl-conflict.os dl-tls.os dl-origin.os dl-scope.os dl-execstack.os dl-caller.os dl-open.os dl-close.os dl-trampoline.os dl-sysdep.os dl-environ.os dl-minimal.os tlsdesc.os dl-tlsdesc.os soinit.os sofini.os interp.os static-stubs.o sotruss-lib.os sotruss-lib.so) | \
	gawk '/\.gnu\.glibc-stub\./ { \
		  sub(/\.gnu\.glibc-stub\./, "", $2); \
		  stubs[$2] = 1; } \
		END { for (s in stubs) print "#define __stub_" s }' > [...]/tschwinge/Roger_Whittaker.build/elf/stubsT
mv -f [...]/tschwinge/Roger_Whittaker.build/elf/stubsT [...]/tschwinge/Roger_Whittaker.build/elf/stubs
make[2]: Leaving directory `[...]/tschwinge/Roger_Whittaker/elf'
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu
(sed '/^@/d' include/stubs-prologue.h; LC_ALL=C sort [...]/tschwinge/Roger_Whittaker.build/mach/stubs [...]/tschwinge/Roger_Whittaker.build/hurd/stubs [...]/tschwinge/Roger_Whittaker.build/csu/stubs [...]/tschwinge/Roger_Whittaker.build/iconv/stubs [...]/tschwinge/Roger_Whittaker.build/locale/stubs [...]/tschwinge/Roger_Whittaker.build/localedata/stubs [...]/tschwinge/Roger_Whittaker.build/iconvdata/stubs [...]/tschwinge/Roger_Whittaker.build/assert/stubs [...]/tschwinge/Roger_Whittaker.build/ctype/stubs [...]/tschwinge/Roger_Whittaker.build/intl/stubs [...]/tschwinge/Roger_Whittaker.build/catgets/stubs [...]/tschwinge/Roger_Whittaker.build/math/stubs [...]/tschwinge/Roger_Whittaker.build/setjmp/stubs [...]/tschwinge/Roger_Whittaker.build/signal/stubs [...]/tschwinge/Roger_Whittaker.build/stdlib/stubs [...]/tschwinge/Roger_Whittaker.build/stdio-common/stubs [...]/tschwinge/Roger_Whittaker.build/libio/stubs [...]/tschwinge/Roger_Whittaker.build/dlfcn/stubs [...]/tschwinge/Roger_Whittaker.build/malloc/stubs [...]/tschwinge/Roger_Whittaker.build/string/stubs [...]/tschwinge/Roger_Whittaker.build/wcsmbs/stubs [...]/tschwinge/Roger_Whittaker.build/timezone/stubs [...]/tschwinge/Roger_Whittaker.build/time/stubs [...]/tschwinge/Roger_Whittaker.build/dirent/stubs [...]/tschwinge/Roger_Whittaker.build/grp/stubs [...]/tschwinge/Roger_Whittaker.build/pwd/stubs [...]/tschwinge/Roger_Whittaker.build/posix/stubs [...]/tschwinge/Roger_Whittaker.build/io/stubs [...]/tschwinge/Roger_Whittaker.build/termios/stubs [...]/tschwinge/Roger_Whittaker.build/resource/stubs [...]/tschwinge/Roger_Whittaker.build/misc/stubs [...]/tschwinge/Roger_Whittaker.build/socket/stubs [...]/tschwinge/Roger_Whittaker.build/sysvipc/stubs [...]/tschwinge/Roger_Whittaker.build/gmon/stubs [...]/tschwinge/Roger_Whittaker.build/gnulib/stubs [...]/tschwinge/Roger_Whittaker.build/wctype/stubs [...]/tschwinge/Roger_Whittaker.build/manual/stubs [...]/tschwinge/Roger_Whittaker.build/shadow/stubs [...]/tschwinge/Roger_Whittaker.build/gshadow/stubs [...]/tschwinge/Roger_Whittaker.build/po/stubs [...]/tschwinge/Roger_Whittaker.build/argp/stubs [...]/tschwinge/Roger_Whittaker.build/crypt/stubs [...]/tschwinge/Roger_Whittaker.build/rt/stubs [...]/tschwinge/Roger_Whittaker.build/conform/stubs [...]/tschwinge/Roger_Whittaker.build/debug/stubs [...]/tschwinge/Roger_Whittaker.build/libidn/stubs [...]/tschwinge/Roger_Whittaker.build/inet/stubs [...]/tschwinge/Roger_Whittaker.build/resolv/stubs [...]/tschwinge/Roger_Whittaker.build/nss/stubs [...]/tschwinge/Roger_Whittaker.build/hesiod/stubs [...]/tschwinge/Roger_Whittaker.build/sunrpc/stubs [...]/tschwinge/Roger_Whittaker.build/nis/stubs [...]/tschwinge/Roger_Whittaker.build/nscd/stubs [...]/tschwinge/Roger_Whittaker.build/streams/stubs [...]/tschwinge/Roger_Whittaker.build/login/stubs [...]/tschwinge/Roger_Whittaker.build/elf/stubs) > [...]/tschwinge/Roger_Whittaker.build/stubs.h
if test -r [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu/stubs.h && cmp -s [...]/tschwinge/Roger_Whittaker.build/stubs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu/stubs.h; \
	then echo 'stubs.h unchanged'; \
	else /usr/bin/install -c -m 644 [...]/tschwinge/Roger_Whittaker.build/stubs.h [...]/tschwinge/Roger_Whittaker.build.install/usr/include/gnu/stubs.h; fi
rm -f [...]/tschwinge/Roger_Whittaker.build/stubs.h
./scripts/mkinstalldirs [...]/tschwinge/Roger_Whittaker.build.install/usr/lib
/usr/bin/install -c -m 644 sysdeps/mach/hurd/libc-ldscript [...]/tschwinge/Roger_Whittaker.build.install/usr/lib/libc.a
[...]/tschwinge/Roger_Whittaker.build/elf/sln [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
rm -f [...]/tschwinge/Roger_Whittaker.build/elf/symlink.list
test ! -x [...]/tschwinge/Roger_Whittaker.build/elf/ldconfig || LC_ALL=C LANGUAGE=C \
	  [...]/tschwinge/Roger_Whittaker.build/elf/ldconfig -r [...]/tschwinge/Roger_Whittaker.build.install \
				       /lib /usr/lib
make[1]: Leaving directory `[...]/tschwinge/Roger_Whittaker'