-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.5.0-DEV-7206b56e94.log
5265 lines (5263 loc) · 613 KB
/
1.5.0-DEV-7206b56e94.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Julia Version 1.5.0-DEV.485
Commit 7206b56e94 (2020-03-18 17:25 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-9.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed URIParser ─ v0.4.0
Installed BinDeps ─── v1.0.0
Updating `~/.julia/environments/v1.5/Project.toml`
9e28174c + BinDeps v1.0.0
Updating `~/.julia/environments/v1.5/Manifest.toml`
9e28174c + BinDeps v1.0.0
30578b45 + URIParser v0.4.0
2a0f44e3 + Base64
ade2ca70 + Dates
8ba89e20 + Distributed
b77e0a4c + InteractiveUtils
76f85450 + LibGit2
8f399da3 + Libdl
56ddb016 + Logging
d6f4376e + Markdown
44cfe95a + Pkg
de0858da + Printf
3fa0cd96 + REPL
9a3f8284 + Random
ea8e919c + SHA
9e88b42a + Serialization
6462fe0b + Sockets
8dfed614 + Test
cf7118a7 + UUIDs
4ec0a83e + Unicode
Testing BinDeps
┌ Error: Pkg.Resolve.ResolverError("Unsatisfiable requirements detected for package BinDeps [9e28174c]:\n BinDeps [9e28174c] log:\n ├─possible versions are: [0.7.0, 0.8.9-0.8.10, 1.0.0] or uninstalled\n ├─restricted to versions 1.0.0 by an explicit requirement, leaving only versions 1.0.0\n └─restricted by compatibility requirements with Cairo [159f3aea] to versions: [0.7.0, 0.8.9-0.8.10] — no versions left\n └─Cairo [159f3aea] log:\n ├─possible versions are: [0.5.3-0.5.6, 0.6.0, 0.7.0, 0.8.0, 1.0.0-1.0.2] or uninstalled\n └─restricted to versions 0.5-0.6 by an explicit requirement, leaving only versions [0.5.3-0.5.6, 0.6.0]", nothing)
└ @ Pkg.Operations /workspace/srcdir/usr/share/julia/stdlib/v1.5/Pkg/src/Operations.jl:1385
#=#=# ######################################################################## 100.0%
┌ Error: Error building `Cairo`, showing the last 5000 of log:
│ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/libgettextpo -I.. -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/libgettextpo -I.. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools -I../src -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/src -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../gettext-runtime/intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/libgettextpo/printf-parse.c -o printf-parse.o >/dev/null 2>&1
│ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/libgettextpo -I.. -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/libgettextpo -I.. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools -I../src -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/src -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../gettext-runtime/intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/libgettextpo/vasnprintf.c -o vasnprintf.o >/dev/null 2>&1
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -no-undefined -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o libgnu.la basename.lo c-ctype.lo c-strcasecmp.lo c-strncasecmp.lo c-strstr.lo concat-filename.lo error-progname.lo exitfail.lo fd-hook.lo file-ostream.lo fstrcmp.lo fwriteerror.lo gcd.lo hash.lo localcharset.lo lock.lo malloca.lo mbswidth.lo ostream.lo progname.lo stdio.lo striconv.lo striconveh.lo striconveha.lo threadlib.lo tls.lo u8-conv-from-enc.lo lbrktables.lo u8-possible-linebreaks.lo u8-width-linebreaks.lo ulc-common.lo ulc-width-linebreaks.lo unistd.lo u16-mbtouc.lo u16-mbtouc-aux.lo u8-check.lo u8-mblen.lo u8-mbtouc.lo u8-mbtouc-aux.lo u8-mbtouc-unsafe.lo u8-mbtouc-unsafe-aux.lo u8-mbtoucr.lo u8-prev.lo u8-uctomb.lo u8-uctomb-aux.lo width.lo wctype-h.lo xmalloc.lo xstrdup.lo xconcat-filename.lo xerror.lo xmalloca.lo xsize.lo xstriconv.lo xvasprintf.lo xasprintf.lo asnprintf.lo printf-args.lo printf-parse.lo vasnprintf.lo
│ libtool: link: ar cru .libs/libgnu.a .libs/basename.o .libs/c-ctype.o .libs/c-strcasecmp.o .libs/c-strncasecmp.o .libs/c-strstr.o .libs/concat-filename.o .libs/error-progname.o .libs/exitfail.o .libs/fd-hook.o .libs/file-ostream.o .libs/fstrcmp.o .libs/fwriteerror.o .libs/gcd.o .libs/hash.o .libs/localcharset.o .libs/lock.o .libs/malloca.o .libs/mbswidth.o .libs/ostream.o .libs/progname.o .libs/stdio.o .libs/striconv.o .libs/striconveh.o .libs/striconveha.o .libs/threadlib.o .libs/tls.o .libs/u8-conv-from-enc.o .libs/lbrktables.o .libs/u8-possible-linebreaks.o .libs/u8-width-linebreaks.o .libs/ulc-common.o .libs/ulc-width-linebreaks.o .libs/unistd.o .libs/u16-mbtouc.o .libs/u16-mbtouc-aux.o .libs/u8-check.o .libs/u8-mblen.o .libs/u8-mbtouc.o .libs/u8-mbtouc-aux.o .libs/u8-mbtouc-unsafe.o .libs/u8-mbtouc-unsafe-aux.o .libs/u8-mbtoucr.o .libs/u8-prev.o .libs/u8-uctomb.o .libs/u8-uctomb-aux.o .libs/width.o .libs/wctype-h.o .libs/xmalloc.o .libs/xstrdup.o .libs/xconcat-filename.o .libs/xerror.o .libs/xmalloca.o .libs/xsize.o .libs/xstriconv.o .libs/xvasprintf.o .libs/xasprintf.o .libs/asnprintf.o .libs/printf-args.o .libs/printf-parse.o .libs/vasnprintf.o
│ ar: `u' modifier ignored since `D' is the default (see `U')
│ libtool: link: ranlib .libs/libgnu.a
│ libtool: link: ( cd ".libs" && rm -f "libgnu.la" && ln -s "../libgnu.la" "libgnu.la" )
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -version-info 5:2:5 -rpath /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -lc -no-undefined -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o libgettextpo.la -rpath /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib gettext-po.lo str-list.lo dir-list.lo message.lo msgl-ascii.lo po-error.lo po-xerror.lo write-catalog.lo write-po.lo open-catalog.lo po-charset.lo po-lex.lo po-gram-gen.lo read-po.lo read-catalog-abstract.lo read-catalog.lo plural-table.lo format-c.lo format-sh.lo format-python.lo format-lisp.lo format-elisp.lo format-librep.lo format-scheme.lo format-java.lo format-csharp.lo format-awk.lo format-pascal.lo format-ycp.lo format-tcl.lo format-perl.lo format-perl-brace.lo format-php.lo format-gcc-internal.lo format-gfc-internal.lo format-qt.lo format-qt-plural.lo format-kde.lo format-boost.lo format.lo plural-exp.lo plural-eval.lo msgl-check.lo libgnu.la
│ libtool: link: gcc -shared -fPIC -DPIC .libs/gettext-po.o .libs/str-list.o .libs/dir-list.o .libs/message.o .libs/msgl-ascii.o .libs/po-error.o .libs/po-xerror.o .libs/write-catalog.o .libs/write-po.o .libs/open-catalog.o .libs/po-charset.o .libs/po-lex.o .libs/po-gram-gen.o .libs/read-po.o .libs/read-catalog-abstract.o .libs/read-catalog.o .libs/plural-table.o .libs/format-c.o .libs/format-sh.o .libs/format-python.o .libs/format-lisp.o .libs/format-elisp.o .libs/format-librep.o .libs/format-scheme.o .libs/format-java.o .libs/format-csharp.o .libs/format-awk.o .libs/format-pascal.o .libs/format-ycp.o .libs/format-tcl.o .libs/format-perl.o .libs/format-perl-brace.o .libs/format-php.o .libs/format-gcc-internal.o .libs/format-gfc-internal.o .libs/format-qt.o .libs/format-qt-plural.o .libs/format-kde.o .libs/format-boost.o .libs/format.o .libs/plural-exp.o .libs/plural-eval.o .libs/msgl-check.o -Wl,--whole-archive ./.libs/libgnu.a -Wl,--no-whole-archive -lc -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-soname -Wl,libgettextpo.so.0 -o .libs/libgettextpo.so.0.5.2
│ libtool: link: (cd ".libs" && rm -f "libgettextpo.so.0" && ln -s "libgettextpo.so.0.5.2" "libgettextpo.so.0")
│ libtool: link: (cd ".libs" && rm -f "libgettextpo.so" && ln -s "libgettextpo.so.0.5.2" "libgettextpo.so")
│ libtool: link: (cd .libs/libgettextpo.lax/libgnu.a && ar x "/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgettextpo/./.libs/libgnu.a")
│ libtool: link: ar cru .libs/libgettextpo.a gettext-po.o str-list.o dir-list.o message.o msgl-ascii.o po-error.o po-xerror.o write-catalog.o write-po.o open-catalog.o po-charset.o po-lex.o po-gram-gen.o read-po.o read-catalog-abstract.o read-catalog.o plural-table.o format-c.o format-sh.o format-python.o format-lisp.o format-elisp.o format-librep.o format-scheme.o format-java.o format-csharp.o format-awk.o format-pascal.o format-ycp.o format-tcl.o format-perl.o format-perl-brace.o format-php.o format-gcc-internal.o format-gfc-internal.o format-qt.o format-qt-plural.o format-kde.o format-boost.o format.o plural-exp.o plural-eval.o msgl-check.o .libs/libgettextpo.lax/libgnu.a/asnprintf.o .libs/libgettextpo.lax/libgnu.a/basename.o .libs/libgettextpo.lax/libgnu.a/c-ctype.o .libs/libgettextpo.lax/libgnu.a/c-strcasecmp.o .libs/libgettextpo.lax/libgnu.a/c-strncasecmp.o .libs/libgettextpo.lax/libgnu.a/c-strstr.o .libs/libgettextpo.lax/libgnu.a/concat-filename.o .libs/libgettextpo.lax/libgnu.a/error-progname.o .libs/libgettextpo.lax/libgnu.a/exitfail.o .libs/libgettextpo.lax/libgnu.a/fd-hook.o .libs/libgettextpo.lax/libgnu.a/file-ostream.o .libs/libgettextpo.lax/libgnu.a/fstrcmp.o .libs/libgettextpo.lax/libgnu.a/fwriteerror.o .libs/libgettextpo.lax/libgnu.a/gcd.o .libs/libgettextpo.lax/libgnu.a/hash.o .libs/libgettextpo.lax/libgnu.a/lbrktables.o .libs/libgettextpo.lax/libgnu.a/localcharset.o .libs/libgettextpo.lax/libgnu.a/lock.o .libs/libgettextpo.lax/libgnu.a/malloca.o .libs/libgettextpo.lax/libgnu.a/mbswidth.o .libs/libgettextpo.lax/libgnu.a/ostream.o .libs/libgettextpo.lax/libgnu.a/printf-args.o .libs/libgettextpo.lax/libgnu.a/printf-parse.o .libs/libgettextpo.lax/libgnu.a/progname.o .libs/libgettextpo.lax/libgnu.a/stdio.o .libs/libgettextpo.lax/libgnu.a/striconv.o .libs/libgettextpo.lax/libgnu.a/striconveh.o .libs/libgettextpo.lax/libgnu.a/striconveha.o .libs/libgettextpo.lax/libgnu.a/threadlib.o .libs/libgettextpo.lax/libgnu.a/tls.o .libs/libgettextpo.lax/libgnu.a/u16-mbtouc-aux.o .libs/libgettextpo.lax/libgnu.a/u16-mbtouc.o .libs/libgettextpo.lax/libgnu.a/u8-check.o .libs/libgettextpo.lax/libgnu.a/u8-conv-from-enc.o .libs/libgettextpo.lax/libgnu.a/u8-mblen.o .libs/libgettextpo.lax/libgnu.a/u8-mbtouc-aux.o .libs/libgettextpo.lax/libgnu.a/u8-mbtouc-unsafe-aux.o .libs/libgettextpo.lax/libgnu.a/u8-mbtouc-unsafe.o .libs/libgettextpo.lax/libgnu.a/u8-mbtouc.o .libs/libgettextpo.lax/libgnu.a/u8-mbtoucr.o .libs/libgettextpo.lax/libgnu.a/u8-possible-linebreaks.o .libs/libgettextpo.lax/libgnu.a/u8-prev.o .libs/libgettextpo.lax/libgnu.a/u8-uctomb-aux.o .libs/libgettextpo.lax/libgnu.a/u8-uctomb.o .libs/libgettextpo.lax/libgnu.a/u8-width-linebreaks.o .libs/libgettextpo.lax/libgnu.a/ulc-common.o .libs/libgettextpo.lax/libgnu.a/ulc-width-linebreaks.o .libs/libgettextpo.lax/libgnu.a/unistd.o .libs/libgettextpo.lax/libgnu.a/vasnprintf.o .libs/libgettextpo.lax/libgnu.a/wctype-h.o .libs/libgettextpo.lax/libgnu.a/width.o .libs/libgettextpo.lax/libgnu.a/xasprintf.o .libs/libgettextpo.lax/libgnu.a/xconcat-filename.o .libs/libgettextpo.lax/libgnu.a/xerror.o .libs/libgettextpo.lax/libgnu.a/xmalloc.o .libs/libgettextpo.lax/libgnu.a/xmalloca.o .libs/libgettextpo.lax/libgnu.a/xsize.o .libs/libgettextpo.lax/libgnu.a/xstrdup.o .libs/libgettextpo.lax/libgnu.a/xstriconv.o .libs/libgettextpo.lax/libgnu.a/xvasprintf.o
│ ar: `u' modifier ignored since `D' is the default (see `U')
│ libtool: link: ranlib .libs/libgettextpo.a
│ libtool: link: rm -fr .libs/libgettextpo.lax
│ libtool: link: ( cd ".libs" && rm -f "libgettextpo.la" && ln -s "../libgettextpo.la" "libgettextpo.la" )
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgettextpo'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgettextpo'
│ Making all in po
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/po'
│ make[3]: Nothing to be done for 'all'.
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/po'
│ Making all in projects
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/projects'
│ make[3]: Nothing to be done for 'all'.
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/projects'
│ Making all in styles
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/styles'
│ make[3]: Nothing to be done for 'all'.
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/styles'
│ Making all in misc
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/misc'
│ if test -f archive.dir.tar; then \
│ inputfile=archive.dir.tar; \
│ else \
│ inputfile='/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/misc'/archive.dir.tar; \
│ fi; \
│ xz -c -5 < "$inputfile" > archive.dir.tar.xz-t && mv archive.dir.tar.xz-t archive.dir.tar.xz
│ WARNING: Warnings can be ignored. :-)
│ if test "no" != no; then \
│ set x; \
│ list='start-po.el po-mode.el po-compat.el'; for p in $list; do \
│ if test -f "$p"; then d=; else d="/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/misc/"; fi; \
│ set x "$@" "$d$p"; shift; \
│ done; \
│ shift; \
│ abs_srcdir="/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/misc" EMACS="no" /bin/bash \
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../build-aux/elisp-comp "$@" || exit 1; \
│ else : ; fi
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/misc'
│ Making all in man
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/man'
│ make[3]: Nothing to be done for 'all'.
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/man'
│ Making all in m4
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/m4'
│ make[3]: Nothing to be done for 'all'.
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/m4'
│ Making all in tests
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/tests'
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -DINSTALLDIR=\".\" -g -O2 -c -o tstgettext-tstgettext.o `test -f 'tstgettext.c' || echo '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/'`tstgettext.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -DINSTALLDIR=\".\" -g -O2 -c -o tstgettext-setlocale.o `test -f 'setlocale.c' || echo '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/'`setlocale.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -DINSTALLDIR=\".\" -g -O2 -c -o tstngettext-tstngettext.o `test -f 'tstngettext.c' || echo '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/'`tstngettext.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -DINSTALLDIR=\".\" -g -O2 -c -o tstngettext-setlocale.o `test -f 'setlocale.c' || echo '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/'`setlocale.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/testlocale.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/gettext-3-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/gettext-4-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/gettext-5-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -DUSE_POSIX_THREADS -g -O2 -c -o gettext_6_prg-gettext-6-prg.o `test -f 'gettext-6-prg.c' || echo '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/'`gettext-6-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -DUSE_POSIX_THREADS -g -O2 -c -o gettext_7_prg-gettext-7-prg.o `test -f 'gettext-7-prg.c' || echo '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/'`gettext-7-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/gettext-8-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/plural-1-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/setlocale.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/format-c-3-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/format-c-4-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/format-c-5-prg.c
│ gcc -DLOCALEDIR=\"/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale\" -DHAVE_CONFIG_H -I. -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests -I.. -I../libgettextpo -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/libgettextpo -I.. -I../gnulib-lib -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib -I../intl -I/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include -g -O2 -c -o gettextpo_1_prg-gettextpo-1-prg.o `test -f 'gettextpo-1-prg.c' || echo '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/tests/'`gettextpo-1-prg.c
│ /bin/bash ../libtool --tag=CC --mode=link gcc -DINSTALLDIR=\".\" -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o tstgettext tstgettext-tstgettext.o tstgettext-setlocale.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ /bin/bash ../libtool --tag=CC --mode=link gcc -DINSTALLDIR=\".\" -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o tstngettext tstngettext-tstngettext.o tstngettext-setlocale.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o testlocale testlocale.o ../intl/libgnuintl.la
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o gettext-3-prg gettext-3-prg.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o gettext-4-prg gettext-4-prg.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o gettext-5-prg gettext-5-prg.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ /bin/bash ../libtool --tag=CC --mode=link gcc -DUSE_POSIX_THREADS -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o gettext-6-prg gettext_6_prg-gettext-6-prg.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la -lpthread
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/gettext-3-prg gettext-3-prg.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ libtool: link: gcc -DINSTALLDIR=\".\" -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/tstngettext tstngettext-tstngettext.o tstngettext-setlocale.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/testlocale testlocale.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../intl/.libs/libgnuintl.so -lc -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/gettext-5-prg gettext-5-prg.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ libtool: link: gcc -DINSTALLDIR=\".\" -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/tstgettext tstgettext-tstgettext.o tstgettext-setlocale.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ /bin/bash ../libtool --tag=CC --mode=link gcc -DUSE_POSIX_THREADS -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o gettext-7-prg gettext_7_prg-gettext-7-prg.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la -lpthread
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/gettext-4-prg gettext-4-prg.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o gettext-8-prg gettext-8-prg.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o cake plural-1-prg.o setlocale.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o fc3 format-c-3-prg.o setlocale.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ libtool: link: gcc -DUSE_POSIX_THREADS -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/gettext-6-prg gettext_6_prg-gettext-6-prg.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -lpthread -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o fc4 format-c-4-prg.o setlocale.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o fc5 format-c-5-prg.o ../gnulib-lib/libgettextlib.la ../intl/libgnuintl.la
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/cake plural-1-prg.o setlocale.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/fc3 format-c-3-prg.o setlocale.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/gettext-8-prg gettext-8-prg.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ libtool: link: gcc -DUSE_POSIX_THREADS -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/gettext-7-prg gettext_7_prg-gettext-7-prg.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -lpthread -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/fc4 format-c-4-prg.o setlocale.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/fc5 format-c-5-prg.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../gnulib-lib/.libs/libgettextlib.so -lncurses ../intl/.libs/libgnuintl.so -lc -fopenmp -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ /bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o gettextpo-1-prg gettextpo_1_prg-gettextpo-1-prg.o ../libgettextpo/libgettextpo.la ../intl/libgnuintl.la
│ libtool: link: gcc -g -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o .libs/gettextpo-1-prg gettextpo_1_prg-gettextpo-1-prg.o -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ../libgettextpo/.libs/libgettextpo.so ../intl/.libs/libgnuintl.so -lc -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/tests'
│ Making all in gnulib-tests
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-tests'
│ rm -f c++defs.h-t c++defs.h && \
│ sed -n -e '/_GL_CXXDEFS/,$p' \
│ < /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../build-aux/snippet/c++defs.h \
│ > c++defs.h-t && \
│ mv c++defs.h-t c++defs.h
│ rm -f warn-on-use.h-t warn-on-use.h && \
│ sed -n -e '/^.ifndef/,$p' \
│ < /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../build-aux/snippet/warn-on-use.h \
│ > warn-on-use.h-t && \
│ mv warn-on-use.h-t warn-on-use.h
│ rm -f arg-nonnull.h-t arg-nonnull.h && \
│ sed -n -e '/GL_ARG_NONNULL/,$p' \
│ < /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../build-aux/snippet/arg-nonnull.h \
│ > arg-nonnull.h-t && \
│ mv arg-nonnull.h-t arg-nonnull.h
│ rm -f test-posix_spawn1.sh-t test-posix_spawn1.sh && \
│ cp /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-tests/test-posix_spawn1.in.sh test-posix_spawn1.sh-t && \
│ mv test-posix_spawn1.sh-t test-posix_spawn1.sh
│ rm -f test-posix_spawn2.sh-t test-posix_spawn2.sh && \
│ cp /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-tests/test-posix_spawn2.in.sh test-posix_spawn2.sh-t && \
│ mv test-posix_spawn2.sh-t test-posix_spawn2.sh
│ rm -f unused-parameter.h-t unused-parameter.h && \
│ sed -n -e '/GL_UNUSED_PARAMETER/,$p' \
│ < /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../build-aux/snippet/unused-parameter.h \
│ > unused-parameter.h-t && \
│ mv unused-parameter.h-t unused-parameter.h
│ rm -f inttypes.h-t inttypes.h && \
│ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
│ sed -e 's/@''HAVE_INTTYPES_H''@/1/g' \
│ -e 's|@''INCLUDE_NEXT''@|include_next|g' \
│ -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
│ -e 's|@''PRAGMA_COLUMNS''@||g' \
│ -e 's|@''NEXT_INTTYPES_H''@|<inttypes.h>|g' \
│ -e 's/@''PRI_MACROS_BROKEN''@/0/g' \
│ -e 's/@''APPLE_UNIVERSAL_BUILD''@/0/g' \
│ -e 's/@''HAVE_LONG_LONG_INT''@/1/g' \
│ -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/1/g' \
│ -e 's/@''PRIPTR_PREFIX''@/"l"/g' \
│ -e 's/@''GNULIB_IMAXABS''@/0/g' \
│ -e 's/@''GNULIB_IMAXDIV''@/0/g' \
│ -e 's/@''GNULIB_STRTOIMAX''@/0/g' \
│ -e 's/@''GNULIB_STRTOUMAX''@/0/g' \
│ -e 's/@''HAVE_DECL_IMAXABS''@/1/g' \
│ -e 's/@''HAVE_DECL_IMAXDIV''@/1/g' \
│ -e 's/@''HAVE_DECL_STRTOIMAX''@/1/g' \
│ -e 's/@''HAVE_DECL_STRTOUMAX''@/1/g' \
│ -e 's/@''REPLACE_STRTOIMAX''@/0/g' \
│ -e 's/@''INT32_MAX_LT_INTMAX_MAX''@/1/g' \
│ -e 's/@''INT64_MAX_EQ_LONG_MAX''@/1/g' \
│ -e 's/@''UINT32_MAX_LT_UINTMAX_MAX''@/1/g' \
│ -e 's/@''UINT64_MAX_EQ_ULONG_MAX''@/1/g' \
│ -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
│ -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
│ -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
│ < /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-tests/inttypes.in.h; \
│ } > inttypes.h-t && \
│ mv inttypes.h-t inttypes.h
│ make all-recursive
│ make[4]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-tests'
│ Making all in .
│ make[5]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-tests'
│ make[5]: Nothing to be done for 'all-am'.
│ make[5]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-tests'
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-tests'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-tests'
│ Making all in examples
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/examples'
│ Making all in po
│ make[4]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/examples/po'
│ make[4]: Nothing to be done for 'all'.
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/examples/po'
│ make[4]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/examples'
│ make[4]: Nothing to be done for 'all-am'.
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/examples'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/examples'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools'
│ make[1]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools'
│ make[1]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext'
│ make[1]: Nothing to be done for 'all-am'.
│ make[1]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext'
│ Making install in gnulib-local
│ make[1]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gnulib-local'
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gnulib-local'
│ make[2]: Nothing to be done for 'install-exec-am'.
│ make[2]: Nothing to be done for 'install-data-am'.
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gnulib-local'
│ make[1]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gnulib-local'
│ Making install in gettext-runtime
│ make[1]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime'
│ Making install in doc
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/doc'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/doc'
│ make[3]: Nothing to be done for 'install-exec-am'.
│ make[3]: Nothing to be done for 'install-data-am'.
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/doc'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/doc'
│ Making install in intl
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl'
│ if { test "gettext-runtime" = "gettext-runtime" || test "gettext-runtime" = "gettext-tools"; } \
│ && test 'no' = yes; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include; \
│ /usr/bin/install -c -m 644 libintl.h /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include/libintl.h; \
│ /bin/bash ../libtool --mode=install \
│ /usr/bin/install -c -m 644 libintl.la /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libintl.la; \
│ if test "no" = yes; then \
│ dependencies=`sed -n -e 's,^dependency_libs=\(.*\),\1,p' < /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libintl.la | sed -e "s,^',," -e "s,'\$,,"`; \
│ if test -n "$dependencies"; then \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libintl.la; \
│ fi; \
│ fi; \
│ else \
│ : ; \
│ fi
│ if test "gettext-runtime" = "gettext-tools"; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl; \
│ /usr/bin/install -c -m 644 VERSION /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/VERSION; \
│ /usr/bin/install -c -m 644 ChangeLog.inst /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/ChangeLog; \
│ dists="COPYING.LIB-2.0 COPYING.LIB-2.1 Makefile.in config.charset locale.alias ref-add.sin ref-del.sin export.h libintl.rc gmo.h gettextP.h hash-string.h loadinfo.h plural-exp.h eval-plural.h localcharset.h lock.h relocatable.h tsearch.h tsearch.c verify.h xsize.h printf-args.h printf-args.c printf-parse.h wprintf-parse.h printf-parse.c vasnprintf.h vasnwprintf.h vasnprintf.c os2compat.h libgnuintl.in.h bindtextdom.c dcgettext.c dgettext.c gettext.c finddomain.c hash-string.c loadmsgcat.c localealias.c textdomain.c l10nflist.c explodename.c dcigettext.c dcngettext.c dngettext.c ngettext.c plural.y plural-exp.c localcharset.c threadlib.c lock.c relocatable.c langprefs.c localename.c log.c printf.c setlocale.c version.c osdep.c os2compat.c intl-exports.c intl-compat.c"; \
│ for file in $dists; do \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl/$file \
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/$file; \
│ done; \
│ chmod a+x /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/config.charset; \
│ dists="plural.c"; \
│ for file in $dists; do \
│ if test -f $file; then dir=.; else dir=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl; fi; \
│ /usr/bin/install -c -m 644 $dir/$file \
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/$file; \
│ done; \
│ dists="xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c COPYING.LIB-2 gettext.h libgettext.h plural-eval.c libgnuintl.h libgnuintl.h_vms Makefile.vms libgnuintl.h.msvc-static libgnuintl.h.msvc-shared Makefile.msvc"; \
│ for file in $dists; do \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/$file; \
│ done; \
│ else \
│ : ; \
│ fi
│ if test "gettext-runtime" = "gettext-tools" \
│ && test 'no' = no \
│ && test yes != no; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib; \
│ /bin/bash ../libtool --mode=install \
│ /usr/bin/install -c -m 644 libgnuintl.la /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.la; \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/preloadable_libintl.so; \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.so /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/preloadable_libintl.so; \
│ /bin/bash ../libtool --mode=uninstall \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.la; \
│ else \
│ : ; \
│ fi
│ if test 'no' = yes; then \
│ if test yes = no; then \
│ case 'linux-gnu' in \
│ darwin[56]*) \
│ need_charset_alias=true ;; \
│ darwin* | cygwin* | mingw* | pw32* | cegcc*) \
│ need_charset_alias=false ;; \
│ *) \
│ need_charset_alias=true ;; \
│ esac; \
│ else \
│ need_charset_alias=false; \
│ fi; \
│ if $need_charset_alias; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib; \
│ fi; \
│ temp=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/t-charset.alias; \
│ dest=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias; \
│ if test -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias; then \
│ orig=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias; \
│ sed -f ref-add.sed $orig > $temp; \
│ /usr/bin/install -c -m 644 $temp $dest; \
│ rm -f $temp; \
│ else \
│ if $need_charset_alias; then \
│ orig=charset.alias; \
│ sed -f ref-add.sed $orig > $temp; \
│ /usr/bin/install -c -m 644 $temp $dest; \
│ rm -f $temp; \
│ fi; \
│ fi; \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale; \
│ test -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/locale.alias \
│ && orig=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/locale.alias \
│ || orig=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl/locale.alias; \
│ temp=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/t-locale.alias; \
│ dest=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/locale.alias; \
│ sed -f ref-add.sed $orig > $temp; \
│ /usr/bin/install -c -m 644 $temp $dest; \
│ rm -f $temp; \
│ else \
│ : ; \
│ fi
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl'
│ Making install in intl-java
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl-java'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl-java'
│ make[3]: Nothing to be done for 'install-exec-am'.
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/gnu/gettext
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/index.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/index.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/allclasses-frame.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/allclasses-frame.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/overview-tree.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/overview-tree.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/deprecated-list.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/deprecated-list.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/serialized-form.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/serialized-form.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/index-all.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/index-all.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/help-doc.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/help-doc.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/packages.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/packages.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/package-list /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/package-list
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/stylesheet.css /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/stylesheet.css
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/gnu/gettext/package-summary.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/gnu/gettext/package-summary.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/gnu/gettext/package-tree.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/gnu/gettext/package-tree.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/gnu/gettext/package-frame.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/gnu/gettext/package-frame.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-java/javadoc2/gnu/gettext/GettextResource.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl-java'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl-java'
│ Making install in intl-csharp
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl-csharp'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl-csharp'
│ make[3]: Nothing to be done for 'install-exec-am'.
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/csharpdoc
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-csharp/csharpdoc/index.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/csharpdoc/index.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-csharp/csharpdoc/namespaces.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/csharpdoc/namespaces.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-csharp/csharpdoc/begin.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/csharpdoc/begin.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-csharp/csharpdoc/GNU_Gettext.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/csharpdoc/GNU_Gettext.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-csharp/csharpdoc/GNU_Gettext_GettextResourceManager.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/intl-csharp/csharpdoc/GNU_Gettext_GettextResourceSet.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl-csharp'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/intl-csharp'
│ Making install in gnulib-lib
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/gnulib-lib'
│ make install-recursive
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/gnulib-lib'
│ make[4]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/gnulib-lib'
│ make[5]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/gnulib-lib'
│ if test yes = no; then \
│ case 'linux-gnu' in \
│ darwin[56]*) \
│ need_charset_alias=true ;; \
│ darwin* | cygwin* | mingw* | pw32* | cegcc*) \
│ need_charset_alias=false ;; \
│ *) \
│ need_charset_alias=true ;; \
│ esac ; \
│ else \
│ need_charset_alias=false ; \
│ fi ; \
│ if $need_charset_alias; then \
│ /bin/bash /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/../build-aux/mkinstalldirs /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ; \
│ fi ; \
│ if test -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias; then \
│ sed -f ref-add.sed /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias > /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias ; \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ else \
│ if $need_charset_alias; then \
│ sed -f ref-add.sed charset.alias > /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias ; \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ fi ; \
│ fi
│ make[5]: Nothing to be done for 'install-data-am'.
│ make[5]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/gnulib-lib'
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/gnulib-lib'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/gnulib-lib'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/gnulib-lib'
│ Making install in libasprintf
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/libasprintf'
│ make install-am
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/libasprintf'
│ make[4]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/libasprintf'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/libasprintf'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include'
│ /bin/bash ./libtool --mode=install /usr/bin/install -c libasprintf.la '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/info'
│ /usr/bin/install -c -m 644 autosprintf.h '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include'
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/libasprintf/autosprintf_all.html '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/libasprintf'
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/libasprintf/autosprintf.info '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/info'
│ libtool: install: /usr/bin/install -c .libs/libasprintf.so.0.0.0 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libasprintf.so.0.0.0
│ libtool: install: (cd /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib && { ln -s -f libasprintf.so.0.0.0 libasprintf.so.0 || { rm -f libasprintf.so.0 && ln -s libasprintf.so.0.0.0 libasprintf.so.0; }; })
│ libtool: install: (cd /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib && { ln -s -f libasprintf.so.0.0.0 libasprintf.so || { rm -f libasprintf.so && ln -s libasprintf.so.0.0.0 libasprintf.so; }; })
│ libtool: install: /usr/bin/install -c .libs/libasprintf.lai /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libasprintf.la
│ libtool: install: /usr/bin/install -c .libs/libasprintf.a /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libasprintf.a
│ libtool: install: chmod 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libasprintf.a
│ libtool: install: ranlib /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libasprintf.a
│ libtool: finish: PATH="/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ ----------------------------------------------------------------------
│ Libraries have been installed in:
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│
│ If you ever happen to want to link against installed libraries
│ in a given directory, LIBDIR, you must either use libtool, and
│ specify the full pathname of the library, or use the `-LLIBDIR'
│ flag during linking and do at least one of the following:
│ - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
│ during execution
│ - add LIBDIR to the `LD_RUN_PATH' environment variable
│ during linking
│ - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
│ - have your system administrator add LIBDIR to `/etc/ld.so.conf'
│
│ See any operating system documentation about shared libraries for
│ more information, such as the ld(1) and ld.so(8) manual pages.
│ ----------------------------------------------------------------------
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/libasprintf'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/libasprintf'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/libasprintf'
│ Making install in src
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/src'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/src'
│ make[3]: Nothing to be done for 'install-data-am'.
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin'
│ /usr/bin/install -c gettext.sh '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin'
│ /bin/bash ../libtool --mode=install /usr/bin/install -c gettext ngettext envsubst '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin'
│ libtool: install: /usr/bin/install -c gettext /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/gettext
│ libtool: install: /usr/bin/install -c ngettext /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/ngettext
│ libtool: install: /usr/bin/install -c envsubst /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/envsubst
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/src'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/src'
│ Making install in po
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/po'
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/be.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/be/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/bg.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/bg/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/ca.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ca/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/cs.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/cs/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/da.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/da/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/de.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/de/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/el.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/el/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/[email protected] as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/[email protected] as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/eo.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/eo/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/es.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/es/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/et.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/et/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/fi.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/fi/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/fr.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/fr/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/ga.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ga/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/gl.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/gl/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/hr.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/hr/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/id.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/id/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/it.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/it/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/ja.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ja/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/ko.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ko/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/nb.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/nb/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/nl.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/nl/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/nn.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/nn/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/pl.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/pl/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/pt.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/pt/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/pt_BR.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/ro.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ro/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/ru.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ru/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/sk.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/sk/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/sl.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/sl/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/sr.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/sr/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/sv.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/sv/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/tr.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/tr/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/uk.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/uk/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/vi.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/vi/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/zh_CN.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/zh_HK.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/zh_TW.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo
│ if test "gettext-runtime" = "gettext-tools"; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/po; \
│ for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed [email protected] [email protected] insert-header.sin Rules-quot Makevars.template; do \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/po/$file \
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/po/$file; \
│ done; \
│ for file in Makevars; do \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/po/$file; \
│ done; \
│ else \
│ : ; \
│ fi
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/po'
│ Making install in man
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/man'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/man'
│ make[3]: Nothing to be done for 'install-exec-am'.
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext
│ for file in gettext.1.html ngettext.1.html envsubst.1.html gettext.3.html ngettext.3.html textdomain.3.html bindtextdomain.3.html bind_textdomain_codeset.3.html; do \
│ if test -f $file; then dir=.; else dir=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man; fi; \
│ /usr/bin/install -c -m 644 $dir/$file /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/$file; \
│ done
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/man/man1'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/man/man3'
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/gettext.3 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/ngettext.3 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/textdomain.3 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/bindtextdomain.3 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/bind_textdomain_codeset.3 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/dgettext.3 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/dcgettext.3 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/dngettext.3 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/dcngettext.3 '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/man/man3'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/man/man1'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/man/man3'
│ /usr/bin/install -c -m 644 gettext.1 ngettext.1 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/man/envsubst.1 '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/man/man1'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/man'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/man'
│ Making install in m4
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/m4'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/m4'
│ make[3]: Nothing to be done for 'install-exec-am'.
│ make[3]: Nothing to be done for 'install-data-am'.
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/m4'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/m4'
│ Making install in tests
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/tests'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/tests'
│ make[3]: Nothing to be done for 'install-exec-am'.
│ make[3]: Nothing to be done for 'install-data-am'.
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/tests'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime/tests'
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime'
│ make[3]: Nothing to be done for 'install-exec-am'.
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext'
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-runtime/ABOUT-NLS '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime'
│ make[1]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-runtime'
│ Making install in gettext-tools
│ make[1]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools'
│ Making install in doc
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/doc'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/doc'
│ make[3]: Nothing to be done for 'install-exec-am'.
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext'
│ for file in `if test -f gettext_toc.html; then echo .; else echo /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/doc; fi`/gettext_*.html; do \
│ /usr/bin/install -c -m 644 $file /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext/`basename $file`; \
│ done
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/doc/FAQ.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/doc/tutorial.html '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/doc/gettext'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/info'
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/doc/gettext.info '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/info'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/doc'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/doc'
│ Making install in intl
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/intl'
│ if { test "gettext-tools" = "gettext-runtime" || test "gettext-tools" = "gettext-tools"; } \
│ && test 'no' = yes; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include; \
│ /usr/bin/install -c -m 644 libintl.h /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include/libintl.h; \
│ /bin/bash ../libtool --mode=install \
│ /usr/bin/install -c -m 644 libintl.la /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libintl.la; \
│ if test "no" = yes; then \
│ dependencies=`sed -n -e 's,^dependency_libs=\(.*\),\1,p' < /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libintl.la | sed -e "s,^',," -e "s,'\$,,"`; \
│ if test -n "$dependencies"; then \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libintl.la; \
│ fi; \
│ fi; \
│ else \
│ : ; \
│ fi
│ if test "gettext-tools" = "gettext-tools"; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl; \
│ /usr/bin/install -c -m 644 VERSION /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/VERSION; \
│ /usr/bin/install -c -m 644 ChangeLog.inst /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/ChangeLog; \
│ dists="COPYING.LIB-2.0 COPYING.LIB-2.1 Makefile.in config.charset locale.alias ref-add.sin ref-del.sin export.h libintl.rc gmo.h gettextP.h hash-string.h loadinfo.h plural-exp.h eval-plural.h localcharset.h lock.h relocatable.h tsearch.h tsearch.c verify.h xsize.h printf-args.h printf-args.c printf-parse.h wprintf-parse.h printf-parse.c vasnprintf.h vasnwprintf.h vasnprintf.c os2compat.h libgnuintl.in.h bindtextdom.c dcgettext.c dgettext.c gettext.c finddomain.c hash-string.c loadmsgcat.c localealias.c textdomain.c l10nflist.c explodename.c dcigettext.c dcngettext.c dngettext.c ngettext.c plural.y plural-exp.c localcharset.c threadlib.c lock.c relocatable.c langprefs.c localename.c log.c printf.c setlocale.c version.c osdep.c os2compat.c intl-exports.c intl-compat.c"; \
│ for file in $dists; do \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../gettext-runtime/intl/$file \
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/$file; \
│ done; \
│ chmod a+x /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/config.charset; \
│ dists="plural.c"; \
│ for file in $dists; do \
│ if test -f $file; then dir=.; else dir=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../gettext-runtime/intl; fi; \
│ /usr/bin/install -c -m 644 $dir/$file \
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/$file; \
│ done; \
│ dists="xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c COPYING.LIB-2 gettext.h libgettext.h plural-eval.c libgnuintl.h libgnuintl.h_vms Makefile.vms libgnuintl.h.msvc-static libgnuintl.h.msvc-shared Makefile.msvc"; \
│ for file in $dists; do \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/intl/$file; \
│ done; \
│ else \
│ : ; \
│ fi
│ if test "gettext-tools" = "gettext-tools" \
│ && test 'no' = no \
│ && test yes != no; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib; \
│ /bin/bash ../libtool --mode=install \
│ /usr/bin/install -c -m 644 libgnuintl.la /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.la; \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/preloadable_libintl.so; \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.so /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/preloadable_libintl.so; \
│ /bin/bash ../libtool --mode=uninstall \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.la; \
│ else \
│ : ; \
│ fi
│ /usr/bin/install: cannot stat '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../gettext-runtime/intl/COPYING.LIB-2.0': No such file or directory
│ /usr/bin/install: cannot stat '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../gettext-runtime/intl/COPYING.LIB-2.1': No such file or directory
│ libtool: install: /usr/bin/install -c -m 644 .libs/libgnuintl.so.8.1.2 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.so.8.1.2
│ libtool: install: (cd /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib && { ln -s -f libgnuintl.so.8.1.2 libgnuintl.so.8 || { rm -f libgnuintl.so.8 && ln -s libgnuintl.so.8.1.2 libgnuintl.so.8; }; })
│ libtool: install: (cd /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib && { ln -s -f libgnuintl.so.8.1.2 libgnuintl.so || { rm -f libgnuintl.so && ln -s libgnuintl.so.8.1.2 libgnuintl.so; }; })
│ libtool: install: /usr/bin/install -c -m 644 .libs/libgnuintl.lai /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.la
│ libtool: install: /usr/bin/install -c -m 644 .libs/libgnuintl.a /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.a
│ libtool: install: chmod 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.a
│ libtool: install: ranlib /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.a
│ libtool: finish: PATH="/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ ----------------------------------------------------------------------
│ Libraries have been installed in:
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│
│ If you ever happen to want to link against installed libraries
│ in a given directory, LIBDIR, you must either use libtool, and
│ specify the full pathname of the library, or use the `-LLIBDIR'
│ flag during linking and do at least one of the following:
│ - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
│ during execution
│ - add LIBDIR to the `LD_RUN_PATH' environment variable
│ during linking
│ - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
│ - have your system administrator add LIBDIR to `/etc/ld.so.conf'
│
│ See any operating system documentation about shared libraries for
│ more information, such as the ld(1) and ld.so(8) manual pages.
│ ----------------------------------------------------------------------
│ libtool: uninstall: rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.la /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.so.8.1.2 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.so.8 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.so /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgnuintl.a
│ if test 'no' = yes; then \
│ if test yes = no; then \
│ case 'linux-gnu' in \
│ darwin[56]*) \
│ need_charset_alias=true ;; \
│ darwin* | cygwin* | mingw* | pw32* | cegcc*) \
│ need_charset_alias=false ;; \
│ *) \
│ need_charset_alias=true ;; \
│ esac; \
│ else \
│ need_charset_alias=false; \
│ fi; \
│ if $need_charset_alias; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib; \
│ fi; \
│ temp=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/t-charset.alias; \
│ dest=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias; \
│ if test -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias; then \
│ orig=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias; \
│ sed -f ref-add.sed $orig > $temp; \
│ /usr/bin/install -c -m 644 $temp $dest; \
│ rm -f $temp; \
│ else \
│ if $need_charset_alias; then \
│ orig=charset.alias; \
│ sed -f ref-add.sed $orig > $temp; \
│ /usr/bin/install -c -m 644 $temp $dest; \
│ rm -f $temp; \
│ fi; \
│ fi; \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale; \
│ test -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/locale.alias \
│ && orig=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/locale.alias \
│ || orig=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../gettext-runtime/intl/locale.alias; \
│ temp=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/t-locale.alias; \
│ dest=/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/locale.alias; \
│ sed -f ref-add.sed $orig > $temp; \
│ /usr/bin/install -c -m 644 $temp $dest; \
│ rm -f $temp; \
│ else \
│ : ; \
│ fi
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/intl'
│ Making install in gnulib-lib
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-lib'
│ make install-am
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-lib'
│ make[4]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-lib'
│ case "linux-gnu" in \
│ aix*) ;; \
│ *) rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextlib.a ;; \
│ esac
│ if test yes = no; then \
│ case 'linux-gnu' in \
│ darwin[56]*) \
│ need_charset_alias=true ;; \
│ darwin* | cygwin* | mingw* | pw32* | cegcc*) \
│ need_charset_alias=false ;; \
│ *) \
│ need_charset_alias=true ;; \
│ esac ; \
│ else \
│ need_charset_alias=false ; \
│ fi ; \
│ if $need_charset_alias; then \
│ /bin/bash /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../build-aux/mkinstalldirs /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ; \
│ fi ; \
│ if test -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias; then \
│ sed -f ref-add.sed /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias > /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias ; \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ else \
│ if $need_charset_alias; then \
│ sed -f ref-add.sed charset.alias > /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias ; \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ fi ; \
│ fi
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib'
│ /bin/bash ../libtool --mode=install /usr/bin/install -c libgettextlib.la '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext'
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib/javaversion.class '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext'
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/gnulib-lib/gettext.h '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext'
│ libtool: install: /usr/bin/install -c .libs/libgettextlib-0.18.2.so /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextlib-0.18.2.so
│ libtool: install: (cd /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib && { ln -s -f libgettextlib-0.18.2.so libgettextlib.so || { rm -f libgettextlib.so && ln -s libgettextlib-0.18.2.so libgettextlib.so; }; })
│ libtool: install: /usr/bin/install -c .libs/libgettextlib.lai /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextlib.la
│ libtool: install: /usr/bin/install -c .libs/libgettextlib.a /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextlib.a
│ libtool: install: chmod 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextlib.a
│ libtool: install: ranlib /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextlib.a
│ libtool: finish: PATH="/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ ----------------------------------------------------------------------
│ Libraries have been installed in:
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│
│ If you ever happen to want to link against installed libraries
│ in a given directory, LIBDIR, you must either use libtool, and
│ specify the full pathname of the library, or use the `-LLIBDIR'
│ flag during linking and do at least one of the following:
│ - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
│ during execution
│ - add LIBDIR to the `LD_RUN_PATH' environment variable
│ during linking
│ - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
│ - have your system administrator add LIBDIR to `/etc/ld.so.conf'
│
│ See any operating system documentation about shared libraries for
│ more information, such as the ld(1) and ld.so(8) manual pages.
│ ----------------------------------------------------------------------
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-lib'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-lib'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/gnulib-lib'
│ Making install in libgrep
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgrep'
│ make install-am
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgrep'
│ make[4]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgrep'
│ make[4]: Nothing to be done for 'install-exec-am'.
│ make[4]: Nothing to be done for 'install-data-am'.
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgrep'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgrep'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgrep'
│ Making install in src
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/src'
│ make install-am
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/src'
│ make[4]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/src'
│ case "linux-gnu" in \
│ aix*) ;; \
│ *) rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextsrc.a ;; \
│ esac
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/gettext
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib'
│ /bin/bash ../libtool --mode=install /usr/bin/install -c libgettextsrc.la '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib'
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/src/msgunfmt.tcl /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/msgunfmt.tcl
│ libtool: install: warning: relinking `libgettextsrc.la'
│ libtool: install: (cd /home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/src; /bin/bash /home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libtool --tag CC --mode=relink gcc -g -O2 -release 0.18.2 ../gnulib-lib/libgettextlib.la -lc -no-undefined -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -o libgettextsrc.la -rpath /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib message.lo po-error.lo po-xerror.lo read-catalog-abstract.lo po-lex.lo po-gram-gen.lo po-charset.lo read-po.lo read-properties.lo read-stringtable.lo open-catalog.lo dir-list.lo str-list.lo read-catalog.lo color.lo write-catalog.lo write-properties.lo write-stringtable.lo write-po.lo msgl-ascii.lo msgl-iconv.lo msgl-equal.lo msgl-cat.lo msgl-header.lo msgl-english.lo msgl-check.lo file-list.lo msgl-charset.lo po-time.lo plural-exp.lo plural-eval.lo plural-table.lo format.lo format-c.lo format-sh.lo format-python.lo format-lisp.lo format-elisp.lo format-librep.lo format-scheme.lo format-java.lo format-csharp.lo format-awk.lo format-pascal.lo format-ycp.lo format-tcl.lo format-perl.lo format-perl-brace.lo format-php.lo format-gcc-internal.lo format-gfc-internal.lo format-qt.lo format-qt-plural.lo format-kde.lo format-boost.lo )
│ libtool: relink: gcc -shared -fPIC -DPIC .libs/message.o .libs/po-error.o .libs/po-xerror.o .libs/read-catalog-abstract.o .libs/po-lex.o .libs/po-gram-gen.o .libs/po-charset.o .libs/read-po.o .libs/read-properties.o .libs/read-stringtable.o .libs/open-catalog.o .libs/dir-list.o .libs/str-list.o .libs/read-catalog.o .libs/color.o .libs/write-catalog.o .libs/write-properties.o .libs/write-stringtable.o .libs/write-po.o .libs/msgl-ascii.o .libs/msgl-iconv.o .libs/msgl-equal.o .libs/msgl-cat.o .libs/msgl-header.o .libs/msgl-english.o .libs/msgl-check.o .libs/file-list.o .libs/msgl-charset.o .libs/po-time.o .libs/plural-exp.o .libs/plural-eval.o .libs/plural-table.o .libs/format.o .libs/format-c.o .libs/format-sh.o .libs/format-python.o .libs/format-lisp.o .libs/format-elisp.o .libs/format-librep.o .libs/format-scheme.o .libs/format-java.o .libs/format-csharp.o .libs/format-awk.o .libs/format-pascal.o .libs/format-ycp.o .libs/format-tcl.o .libs/format-perl.o .libs/format-perl-brace.o .libs/format-php.o .libs/format-gcc-internal.o .libs/format-gfc-internal.o .libs/format-qt.o .libs/format-qt-plural.o .libs/format-kde.o .libs/format-boost.o -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -L/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -lgettextlib -lncurses -lc -O2 -Wl,-rpath -Wl,/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib -fopenmp -Wl,-soname -Wl,libgettextsrc-0.18.2.so -o .libs/libgettextsrc-0.18.2.so
│ libtool: install: /usr/bin/install -c .libs/libgettextsrc-0.18.2.soT /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextsrc-0.18.2.so
│ libtool: install: (cd /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib && { ln -s -f libgettextsrc-0.18.2.so libgettextsrc.so || { rm -f libgettextsrc.so && ln -s libgettextsrc-0.18.2.so libgettextsrc.so; }; })
│ libtool: install: /usr/bin/install -c .libs/libgettextsrc.lai /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextsrc.la
│ libtool: install: /usr/bin/install -c .libs/libgettextsrc.a /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextsrc.a
│ libtool: install: chmod 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextsrc.a
│ libtool: install: ranlib /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextsrc.a
│ libtool: finish: PATH="/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ ----------------------------------------------------------------------
│ Libraries have been installed in:
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│
│ If you ever happen to want to link against installed libraries
│ in a given directory, LIBDIR, you must either use libtool, and
│ specify the full pathname of the library, or use the `-LLIBDIR'
│ flag during linking and do at least one of the following:
│ - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
│ during execution
│ - add LIBDIR to the `LD_RUN_PATH' environment variable
│ during linking
│ - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
│ - have your system administrator add LIBDIR to `/etc/ld.so.conf'
│
│ See any operating system documentation about shared libraries for
│ more information, such as the ld(1) and ld.so(8) manual pages.
│ ----------------------------------------------------------------------
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/gettext
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin'
│ /bin/bash ../libtool --mode=install /usr/bin/install -c hostname /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/gettext/hostname
│ /bin/bash ../libtool --mode=install /usr/bin/install -c msgcmp msgfmt msgmerge msgunfmt xgettext msgattrib msgcat msgcomm msgconv msgen msgexec msgfilter msggrep msginit msguniq recode-sr-latin '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin'
│ libtool: install: /usr/bin/install -c .libs/hostname /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/gettext/hostname
│ /bin/bash ../libtool --mode=install /usr/bin/install -c urlget /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/gettext/urlget
│ libtool: install: /usr/bin/install -c .libs/msgcmp /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgcmp
│ libtool: install: /usr/bin/install -c .libs/msgfmt /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgfmt
│ libtool: install: /usr/bin/install -c .libs/urlget /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/gettext/urlget
│ /usr/bin/install -c user-email /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/gettext/user-email
│ /usr/bin/install -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/src/project-id /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/gettext/project-id
│ libtool: install: /usr/bin/install -c .libs/msgmerge /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgmerge
│ libtool: install: /usr/bin/install -c .libs/msgunfmt /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgunfmt
│ libtool: install: /usr/bin/install -c .libs/xgettext /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/xgettext
│ libtool: install: /usr/bin/install -c .libs/msgattrib /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgattrib
│ libtool: install: /usr/bin/install -c .libs/msgcat /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgcat
│ libtool: install: /usr/bin/install -c .libs/msgcomm /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgcomm
│ libtool: install: /usr/bin/install -c .libs/msgconv /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgconv
│ libtool: install: /usr/bin/install -c .libs/msgen /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgen
│ libtool: install: /usr/bin/install -c .libs/msgexec /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgexec
│ libtool: install: /usr/bin/install -c .libs/msgfilter /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msgfilter
│ libtool: install: /usr/bin/install -c .libs/msggrep /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msggrep
│ libtool: install: /usr/bin/install -c .libs/msginit /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msginit
│ libtool: install: /usr/bin/install -c .libs/msguniq /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/msguniq
│ libtool: install: /usr/bin/install -c .libs/recode-sr-latin /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin/recode-sr-latin
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/src'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/src'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/src'
│ Making install in libgettextpo
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgettextpo'
│ make install-am
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgettextpo'
│ make[4]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgettextpo'
│ if test yes = no; then \
│ case 'linux-gnu' in \
│ darwin[56]*) \
│ need_charset_alias=true ;; \
│ darwin* | cygwin* | mingw* | pw32* | cegcc*) \
│ need_charset_alias=false ;; \
│ *) \
│ need_charset_alias=true ;; \
│ esac ; \
│ else \
│ need_charset_alias=false ; \
│ fi ; \
│ if $need_charset_alias; then \
│ /bin/bash /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/../build-aux/mkinstalldirs /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib ; \
│ fi ; \
│ if test -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias; then \
│ sed -f ref-add.sed /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias > /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias ; \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ else \
│ if $need_charset_alias; then \
│ sed -f ref-add.sed charset.alias > /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.alias ; \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/charset.tmp ; \
│ fi ; \
│ fi
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib'
│ /bin/mkdir -p '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include'
│ /bin/bash ../libtool --mode=install /usr/bin/install -c libgettextpo.la '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib'
│ /usr/bin/install -c -m 644 gettext-po.h '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/include'
│ libtool: install: /usr/bin/install -c .libs/libgettextpo.so.0.5.2 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextpo.so.0.5.2
│ libtool: install: (cd /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib && { ln -s -f libgettextpo.so.0.5.2 libgettextpo.so.0 || { rm -f libgettextpo.so.0 && ln -s libgettextpo.so.0.5.2 libgettextpo.so.0; }; })
│ libtool: install: (cd /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib && { ln -s -f libgettextpo.so.0.5.2 libgettextpo.so || { rm -f libgettextpo.so && ln -s libgettextpo.so.0.5.2 libgettextpo.so; }; })
│ libtool: install: /usr/bin/install -c .libs/libgettextpo.lai /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextpo.la
│ libtool: install: /usr/bin/install -c .libs/libgettextpo.a /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextpo.a
│ libtool: install: chmod 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextpo.a
│ libtool: install: ranlib /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib/libgettextpo.a
│ libtool: finish: PATH="/home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│ ----------------------------------------------------------------------
│ Libraries have been installed in:
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/lib
│
│ If you ever happen to want to link against installed libraries
│ in a given directory, LIBDIR, you must either use libtool, and
│ specify the full pathname of the library, or use the `-LLIBDIR'
│ flag during linking and do at least one of the following:
│ - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
│ during execution
│ - add LIBDIR to the `LD_RUN_PATH' environment variable
│ during linking
│ - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
│ - have your system administrator add LIBDIR to `/etc/ld.so.conf'
│
│ See any operating system documentation about shared libraries for
│ more information, such as the ld(1) and ld.so(8) manual pages.
│ ----------------------------------------------------------------------
│ make[4]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgettextpo'
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgettextpo'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/libgettextpo'
│ Making install in po
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/po'
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/be.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/be/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/bg.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/bg/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/ca.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ca/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/cs.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/cs/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/da.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/da/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/de.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/de/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/el.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/el/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/[email protected] as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/en@quot/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/[email protected] as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/es.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/es/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/et.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/et/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/eu.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/eu/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/fi.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/fi/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/fr.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/fr/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/gl.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/gl/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/id.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/id/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/it.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/it/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/ja.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ja/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/ko.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ko/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/nb.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/nb/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/nl.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/nl/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/nn.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/nn/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/pa.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/pa/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/pl.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/pl/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/pt.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/pt/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/pt_BR.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/ro.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ro/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/ru.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/ru/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/sk.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/sk/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/sl.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/sl/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/sr.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/sr/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/sv.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/sv/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/tr.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/tr/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/uk.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/uk/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/vi.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/vi/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/zh_CN.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo
│ installing /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/zh_TW.gmo as /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo
│ if test "gettext-tools" = "gettext-tools"; then \
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/po; \
│ for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed [email protected] [email protected] insert-header.sin Rules-quot Makevars.template; do \
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/po/$file \
│ /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/po/$file; \
│ done; \
│ for file in Makevars; do \
│ rm -f /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/po/$file; \
│ done; \
│ else \
│ : ; \
│ fi
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/po'
│ Making install in projects
│ make[2]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/projects'
│ make[3]: Entering directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/projects'
│ make[3]: Nothing to be done for 'install-exec-am'.
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/TP
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/KDE
│ /bin/mkdir -p /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/GNOME
│ /usr/bin/install -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/team-address /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/team-address
│ /usr/bin/install -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/TP/trigger /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/TP/trigger
│ /usr/bin/install -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/TP/team-address /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/TP/team-address
│ /usr/bin/install -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/KDE/trigger /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/KDE/trigger
│ /usr/bin/install -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/KDE/team-address /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/KDE/team-address
│ /usr/bin/install -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/GNOME/trigger /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/GNOME/trigger
│ /usr/bin/install -c /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/GNOME/team-address /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/GNOME/team-address
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/index /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/index
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/TP/teams.url /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/TP/teams.url
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/TP/teams.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/TP/teams.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/KDE/teams.url /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/KDE/teams.url
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/KDE/teams.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/KDE/teams.html
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/GNOME/teams.url /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/GNOME/teams.url
│ /usr/bin/install -c -m 644 /home/pkgeval/.julia/packages/Cairo/p68X8/deps/src/gettext-0.18.2/gettext-tools/projects/GNOME/teams.html /home/pkgeval/.julia/packages/Cairo/p68X8/deps/usr/share/gettext/projects/GNOME/teams.html
│ make[3]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/projects'
│ make[2]: Leaving directory '/home/pkgeval/.julia/packages/Cairo/p68X8/deps/builds/gettext/gettext-tools/projects'