1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
|
DC-Build-Header: asn1c 0.9.21.dfsg1-3 / 2013-06-21 06:04:34 +0000
DC-Task: source:asn1c version:0.9.21.dfsg1-3 architecture:any chroot:unstable esttime:243 logfile:/tmp/asn1c_0.9.21.dfsg1-3_unstable.log modes:
DC-Sbuild-call: su user -c 'sbuild -n -A -s --force-orig-source --apt-update -d unstable -v asn1c_0.9.21.dfsg1-3'
sbuild (Debian sbuild) 0.63.2 (18 Aug 2012) on ip-10-232-41-71.ec2.internal
╔══════════════════════════════════════════════════════════════════════════════╗
║ asn1c 0.9.21.dfsg1-3 (amd64) 21 Jun 2013 06:04 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: asn1c
Version: 0.9.21.dfsg1-3
Source Version: 0.9.21.dfsg1-3
Distribution: unstable
Machine Architecture: amd64
Host Architecture: amd64
Build Architecture: amd64
I: NOTICE: Log filtering will replace 'build/asn1c-mZQi67/asn1c-0.9.21.dfsg1' with '«PKGBUILDDIR»'
I: NOTICE: Log filtering will replace 'build/asn1c-mZQi67' with '«BUILDDIR»'
I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/unstable-amd64-sbuild-ee608ff5-71aa-45aa-9303-2096c7dcf8e4' with '«CHROOT»'
┌──────────────────────────────────────────────────────────────────────────────┐
│ Update chroot │
└──────────────────────────────────────────────────────────────────────────────┘
Get:1 http://localhost:9999 unstable InRelease [205 kB]
Get:2 http://localhost:9999 unstable/main Sources/DiffIndex [7876 B]
Get:3 http://localhost:9999 unstable/main amd64 Packages/DiffIndex [7876 B]
Get:4 http://localhost:9999 unstable/main Translation-en/DiffIndex [7876 B]
Get:5 http://localhost:9999 unstable/main 2013-06-20-1431.18.pdiff [12.2 kB]
Get:6 http://localhost:9999 unstable/main amd64 2013-06-20-1431.18.pdiff [28.7 kB]
Get:7 http://localhost:9999 unstable/main 2013-06-20-1431.18.pdiff [12.2 kB]
Get:8 http://localhost:9999 unstable/main 2013-06-20-1431.18.pdiff [46 B]
Get:9 http://localhost:9999 unstable/main amd64 2013-06-20-1431.18.pdiff [28.7 kB]
Get:10 http://localhost:9999 unstable/main 2013-06-20-2028.23.pdiff [9458 B]
Get:11 http://localhost:9999 unstable/main 2013-06-20-1431.18.pdiff [46 B]
Get:12 http://localhost:9999 unstable/main amd64 2013-06-20-2028.23.pdiff [8724 B]
Get:13 http://localhost:9999 unstable/main 2013-06-20-2028.23.pdiff [9458 B]
Get:14 http://localhost:9999 unstable/main 2013-06-20-2028.23.pdiff [463 B]
Get:15 http://localhost:9999 unstable/main amd64 2013-06-20-2028.23.pdiff [8724 B]
Get:16 http://localhost:9999 unstable/main 2013-06-20-2028.23.pdiff [463 B]
Fetched 288 kB in 8s (32.3 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be upgraded:
binutils cpp-4.6 g++-4.6 gcc-4.6 gcc-4.6-base libstdc++6-4.6-dev
6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 26.0 MB of archives.
After this operation, 896 kB disk space will be freed.
Get:1 http://localhost:9999/debian/ unstable/main binutils amd64 2.23.52.20130620-1 [6102 kB]
Get:2 http://localhost:9999/debian/ unstable/main libstdc++6-4.6-dev amd64 4.6.4-4 [1619 kB]
Get:3 http://localhost:9999/debian/ unstable/main g++-4.6 amd64 4.6.4-4 [6260 kB]
Get:4 http://localhost:9999/debian/ unstable/main gcc-4.6 amd64 4.6.4-4 [7213 kB]
Get:5 http://localhost:9999/debian/ unstable/main cpp-4.6 amd64 4.6.4-4 [4709 kB]
Get:6 http://localhost:9999/debian/ unstable/main gcc-4.6-base amd64 4.6.4-4 [142 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 26.0 MB in 0s (26.7 MB/s)
(Reading database ... 13841 files and directories currently installed.)
Preparing to replace binutils 2.23.52.20130612-1 (using .../binutils_2.23.52.20130620-1_amd64.deb) ...
Unpacking replacement binutils ...
Preparing to replace libstdc++6-4.6-dev 4.6.4-3 (using .../libstdc++6-4.6-dev_4.6.4-4_amd64.deb) ...
Unpacking replacement libstdc++6-4.6-dev ...
Preparing to replace g++-4.6 4.6.4-3 (using .../g++-4.6_4.6.4-4_amd64.deb) ...
Unpacking replacement g++-4.6 ...
Preparing to replace gcc-4.6 4.6.4-3 (using .../gcc-4.6_4.6.4-4_amd64.deb) ...
Unpacking replacement gcc-4.6 ...
Preparing to replace cpp-4.6 4.6.4-3 (using .../cpp-4.6_4.6.4-4_amd64.deb) ...
Unpacking replacement cpp-4.6 ...
Preparing to replace gcc-4.6-base:amd64 4.6.4-3 (using .../gcc-4.6-base_4.6.4-4_amd64.deb) ...
Unpacking replacement gcc-4.6-base:amd64 ...
Setting up binutils (2.23.52.20130620-1) ...
Setting up gcc-4.6-base:amd64 (4.6.4-4) ...
Setting up cpp-4.6 (4.6.4-4) ...
Setting up gcc-4.6 (4.6.4-4) ...
Setting up g++-4.6 (4.6.4-4) ...
Setting up libstdc++6-4.6-dev (4.6.4-4) ...
Processing triggers for libc-bin ...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files │
└──────────────────────────────────────────────────────────────────────────────┘
Check APT
─────────
Checking available source versions...
Download source files with APT
──────────────────────────────
Reading package lists...
Building dependency tree...
Reading state information...
NOTICE: 'asn1c' packaging is maintained in the 'Svn' version control system at:
svn://anonscm.debian.org/collab-maint/deb-maint/asn1c/trunk
Need to get 930 kB of source archives.
Get:1 http://localhost:9999/debian/ unstable/main asn1c 0.9.21.dfsg1-3 (dsc) [1924 B]
Get:2 http://localhost:9999/debian/ unstable/main asn1c 0.9.21.dfsg1-3 (tar) [921 kB]
Get:3 http://localhost:9999/debian/ unstable/main asn1c 0.9.21.dfsg1-3 (diff) [7635 B]
Fetched 930 kB in 0s (2759 kB/s)
Download complete and in download only mode
Check arch
──────────
Merged Build-Depends: build-essential, fakeroot
Filtered Build-Depends: build-essential, fakeroot
dpkg-deb: building package `sbuild-build-depends-core-dummy' in `/«BUILDDIR»/resolver-zpeJmp/apt_archive/sbuild-build-depends-core-dummy.deb'.
OK
Reading package lists...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install core build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following NEW packages will be installed:
sbuild-build-depends-core-dummy
debconf: delaying package configuration, since apt-utils is not installed
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/710 B of archives.
After this operation, 0 B of additional disk space will be used.
Selecting previously unselected package sbuild-build-depends-core-dummy.
(Reading database ... 13841 files and directories currently installed.)
Unpacking sbuild-build-depends-core-dummy (from .../sbuild-build-depends-core-dummy.deb) ...
Setting up sbuild-build-depends-core-dummy (0.invalid.0) ...
Merged Build-Depends: base-files, base-passwd, bash, bsdutils, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, libc-bin, login, mount, ncurses-base, ncurses-bin, perl-base, sed, sysvinit, sysvinit-utils, tar, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 9.0.0), autotools-dev, dh-autoreconf, libtool, m4, flex
Filtered Build-Depends: base-files, base-passwd, bash, bsdutils, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, libc-bin, login, mount, ncurses-base, ncurses-bin, perl-base, sed, sysvinit, sysvinit-utils, tar, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 9.0.0), autotools-dev, dh-autoreconf, libtool, m4, flex
dpkg-deb: building package `sbuild-build-depends-asn1c-dummy' in `/«BUILDDIR»/resolver-0IUZzX/apt_archive/sbuild-build-depends-asn1c-dummy.deb'.
OK
Reading package lists...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install asn1c build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
autoconf automake autotools-dev bsdmainutils debhelper dh-autoreconf file
flex gettext gettext-base groff-base intltool-debian libasprintf0c2
libcroco3 libffi6 libglib2.0-0 libmagic1 libpipeline1 libsigsegv2 libtool
libunistring0 libxml2 m4 man-db po-debconf
Suggested packages:
autoconf2.13 autoconf-archive gnu-standards autoconf-doc wamerican wordlist
whois vacation dh-make bison gettext-doc groff libtool-doc automaken
gfortran fortran95-compiler gcj less www-browser libmail-box-perl
Recommended packages:
autopoint curl wget lynx-cur libasprintf-dev libgettextpo-dev
libglib2.0-data shared-mime-info libltdl-dev xml-core libmail-sendmail-perl
The following NEW packages will be installed:
autoconf automake autotools-dev bsdmainutils debhelper dh-autoreconf file
flex gettext gettext-base groff-base intltool-debian libasprintf0c2
libcroco3 libffi6 libglib2.0-0 libmagic1 libpipeline1 libsigsegv2 libtool
libunistring0 libxml2 m4 man-db po-debconf sbuild-build-depends-asn1c-dummy
0 upgraded, 26 newly installed, 0 to remove and 0 not upgraded.
Need to get 11.6 MB/11.6 MB of archives.
After this operation, 32.1 MB of additional disk space will be used.
Get:1 http://localhost:9999/debian/ unstable/main libpipeline1 amd64 1.2.4-1 [41.0 kB]
Get:2 http://localhost:9999/debian/ unstable/main groff-base amd64 1.22.2-3 [747 kB]
Get:3 http://localhost:9999/debian/ unstable/main bsdmainutils amd64 9.0.5 [211 kB]
Get:4 http://localhost:9999/debian/ unstable/main man-db amd64 2.6.3-7 [893 kB]
Get:5 http://localhost:9999/debian/ unstable/main libasprintf0c2 amd64 0.18.2.1-1 [28.9 kB]
Get:6 http://localhost:9999/debian/ unstable/main libmagic1 amd64 1:5.14-2 [216 kB]
Get:7 http://localhost:9999/debian/ unstable/main libxml2 amd64 2.9.1+dfsg1-2 [911 kB]
Get:8 http://localhost:9999/debian/ unstable/main libsigsegv2 amd64 2.9-4 [28.9 kB]
Get:9 http://localhost:9999/debian/ unstable/main m4 amd64 1.4.16-5 [260 kB]
Get:10 http://localhost:9999/debian/ unstable/main flex amd64 2.5.35-10.1 [332 kB]
Get:11 http://localhost:9999/debian/ unstable/main libffi6 amd64 3.0.13-4 [21.6 kB]
Get:12 http://localhost:9999/debian/ unstable/main libglib2.0-0 amd64 2.36.3-1 [2045 kB]
Get:13 http://localhost:9999/debian/ unstable/main libcroco3 amd64 0.6.8-2 [133 kB]
Get:14 http://localhost:9999/debian/ unstable/main libunistring0 amd64 0.9.3-5 [434 kB]
Get:15 http://localhost:9999/debian/ unstable/main file amd64 1:5.14-2 [54.0 kB]
Get:16 http://localhost:9999/debian/ unstable/main gettext-base amd64 0.18.2.1-1 [156 kB]
Get:17 http://localhost:9999/debian/ unstable/main autoconf all 2.69-1 [589 kB]
Get:18 http://localhost:9999/debian/ unstable/main autotools-dev all 20130515.1 [73.0 kB]
Get:19 http://localhost:9999/debian/ unstable/main automake all 1:1.13.3-1 [758 kB]
Get:20 http://localhost:9999/debian/ unstable/main gettext amd64 0.18.2.1-1 [2019 kB]
Get:21 http://localhost:9999/debian/ unstable/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
Get:22 http://localhost:9999/debian/ unstable/main po-debconf all 1.0.16+nmu2 [224 kB]
Get:23 http://localhost:9999/debian/ unstable/main debhelper all 9.20130605 [709 kB]
Get:24 http://localhost:9999/debian/ unstable/main libtool amd64 2.4.2-1.2 [621 kB]
Get:25 http://localhost:9999/debian/ unstable/main dh-autoreconf all 7 [15.3 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 11.6 MB in 0s (20.1 MB/s)
Selecting previously unselected package libpipeline1:amd64.
(Reading database ... 13841 files and directories currently installed.)
Unpacking libpipeline1:amd64 (from .../libpipeline1_1.2.4-1_amd64.deb) ...
Selecting previously unselected package groff-base.
Unpacking groff-base (from .../groff-base_1.22.2-3_amd64.deb) ...
Selecting previously unselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_9.0.5_amd64.deb) ...
Selecting previously unselected package man-db.
Unpacking man-db (from .../man-db_2.6.3-7_amd64.deb) ...
Selecting previously unselected package libasprintf0c2:amd64.
Unpacking libasprintf0c2:amd64 (from .../libasprintf0c2_0.18.2.1-1_amd64.deb) ...
Selecting previously unselected package libmagic1:amd64.
Unpacking libmagic1:amd64 (from .../libmagic1_1%3a5.14-2_amd64.deb) ...
Selecting previously unselected package libxml2:amd64.
Unpacking libxml2:amd64 (from .../libxml2_2.9.1+dfsg1-2_amd64.deb) ...
Selecting previously unselected package libsigsegv2.
Unpacking libsigsegv2 (from .../libsigsegv2_2.9-4_amd64.deb) ...
Selecting previously unselected package m4.
Unpacking m4 (from .../archives/m4_1.4.16-5_amd64.deb) ...
Selecting previously unselected package flex.
Unpacking flex (from .../flex_2.5.35-10.1_amd64.deb) ...
Selecting previously unselected package libffi6:amd64.
Unpacking libffi6:amd64 (from .../libffi6_3.0.13-4_amd64.deb) ...
Selecting previously unselected package libglib2.0-0:amd64.
Unpacking libglib2.0-0:amd64 (from .../libglib2.0-0_2.36.3-1_amd64.deb) ...
Selecting previously unselected package libcroco3:amd64.
Unpacking libcroco3:amd64 (from .../libcroco3_0.6.8-2_amd64.deb) ...
Selecting previously unselected package libunistring0:amd64.
Unpacking libunistring0:amd64 (from .../libunistring0_0.9.3-5_amd64.deb) ...
Selecting previously unselected package file.
Unpacking file (from .../file_1%3a5.14-2_amd64.deb) ...
Selecting previously unselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.18.2.1-1_amd64.deb) ...
Selecting previously unselected package autoconf.
Unpacking autoconf (from .../autoconf_2.69-1_all.deb) ...
Selecting previously unselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20130515.1_all.deb) ...
Selecting previously unselected package automake.
Unpacking automake (from .../automake_1%3a1.13.3-1_all.deb) ...
Selecting previously unselected package gettext.
Unpacking gettext (from .../gettext_0.18.2.1-1_amd64.deb) ...
Selecting previously unselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously unselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.16+nmu2_all.deb) ...
Selecting previously unselected package debhelper.
Unpacking debhelper (from .../debhelper_9.20130605_all.deb) ...
Selecting previously unselected package libtool.
Unpacking libtool (from .../libtool_2.4.2-1.2_amd64.deb) ...
Selecting previously unselected package dh-autoreconf.
Unpacking dh-autoreconf (from .../dh-autoreconf_7_all.deb) ...
Selecting previously unselected package sbuild-build-depends-asn1c-dummy.
Unpacking sbuild-build-depends-asn1c-dummy (from .../sbuild-build-depends-asn1c-dummy.deb) ...
Setting up libpipeline1:amd64 (1.2.4-1) ...
Setting up groff-base (1.22.2-3) ...
Setting up bsdmainutils (9.0.5) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode
update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode
Setting up man-db (2.6.3-7) ...
Not building database; man-db/auto-update is not 'true'.
Setting up libasprintf0c2:amd64 (0.18.2.1-1) ...
Setting up libmagic1:amd64 (1:5.14-2) ...
Setting up libxml2:amd64 (2.9.1+dfsg1-2) ...
Setting up libsigsegv2 (2.9-4) ...
Setting up m4 (1.4.16-5) ...
Setting up flex (2.5.35-10.1) ...
Setting up libffi6:amd64 (3.0.13-4) ...
Setting up libglib2.0-0:amd64 (2.36.3-1) ...
No schema files found: doing nothing.
Setting up libcroco3:amd64 (0.6.8-2) ...
Setting up libunistring0:amd64 (0.9.3-5) ...
Setting up file (1:5.14-2) ...
Setting up gettext-base (0.18.2.1-1) ...
Setting up autoconf (2.69-1) ...
Setting up autotools-dev (20130515.1) ...
Setting up automake (1:1.13.3-1) ...
update-alternatives: using /usr/bin/automake-1.13 to provide /usr/bin/automake (automake) in auto mode
Setting up gettext (0.18.2.1-1) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16+nmu2) ...
Setting up debhelper (9.20130605) ...
Setting up libtool (2.4.2-1.2) ...
Setting up dh-autoreconf (7) ...
Setting up sbuild-build-depends-asn1c-dummy (0.invalid.0) ...
Processing triggers for libc-bin ...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build environment │
└──────────────────────────────────────────────────────────────────────────────┘
Kernel: Linux 2.6.32-5-xen-amd64 amd64 (x86_64)
Toolchain package versions: binutils_2.23.52.20130620-1 dpkg-dev_1.16.10 g++-4.6_4.6.4-4 g++-4.8_4.8.1-3 gcc-4.6_4.6.4-4 gcc-4.7_4.7.3-5 gcc-4.8_4.8.1-3 libc6-dev_2.17-5 libstdc++-4.8-dev_4.8.1-3 libstdc++6_4.8.1-3 libstdc++6-4.6-dev_4.6.4-4 linux-libc-dev_3.9.6-1
Package versions: apt_0.9.8.2 autoconf_2.69-1 automake_1:1.13.3-1 autotools-dev_20130515.1 base-files_7.2 base-passwd_3.5.26 bash_4.2+dfsg-1 binutils_2.23.52.20130620-1 bsdmainutils_9.0.5 bsdutils_1:2.20.1-5.4 build-essential_11.6 bzip2_1.0.6-4 coreutils_8.20-3 cpp_4:4.8.1-1 cpp-4.6_4.6.4-4 cpp-4.7_4.7.3-5 cpp-4.8_4.8.1-3 dash_0.5.7-3 debconf_1.5.50 debconf-i18n_1.5.50 debfoster_2.7-1.2 debhelper_9.20130605 debian-archive-keyring_2012.4 debianutils_4.3.4 dh-autoreconf_7 diffutils_1:3.2-8 dpkg_1.16.10 dpkg-dev_1.16.10 e2fslibs_1.42.5-1.1 e2fsprogs_1.42.5-1.1 fakeroot_1.19-2 file_1:5.14-2 findutils_4.4.2-5 flex_2.5.35-10.1 g++_4:4.8.1-1 g++-4.6_4.6.4-4 g++-4.8_4.8.1-3 gcc_4:4.8.1-1 gcc-4.4-base_4.4.7-4 gcc-4.5-base_4.5.4-1 gcc-4.6_4.6.4-4 gcc-4.6-base_4.6.4-4 gcc-4.7_4.7.3-5 gcc-4.7-base_4.7.3-5 gcc-4.8_4.8.1-3 gcc-4.8-base_4.8.1-3 gettext_0.18.2.1-1 gettext-base_0.18.2.1-1 gnupg_1.4.12-7 gpgv_1.4.12-7 grep_2.14-2 groff-base_1.22.2-3 gzip_1.6-1 hostname_3.13 initscripts_2.88dsf-41 insserv_1.14.0-5 intltool-debian_0.35.0+20060710.1 libacl1_2.2.52-1 libapt-pkg4.12_0.9.8.2 libasan0_4.8.1-3 libasprintf0c2_0.18.2.1-1 libatomic1_4.8.1-3 libattr1_1:2.4.47-1 libblkid1_2.20.1-5.4 libbz2-1.0_1.0.6-4 libc-bin_2.17-5 libc-dev-bin_2.17-5 libc6_2.17-5 libc6-dev_2.17-5 libcap2_1:2.22-1.2 libclass-isa-perl_0.36-5 libcloog-isl4_0.18.0-2 libcloog-ppl1_0.16.1-3 libcomerr2_1.42.5-1.1 libcroco3_0.6.8-2 libdb5.1_5.1.29-6 libdpkg-perl_1.16.10 libffi6_3.0.13-4 libfile-fcntllock-perl_0.14-2 libgc1c2_1:7.1-9.1 libgcc-4.7-dev_4.7.3-5 libgcc-4.8-dev_4.8.1-3 libgcc1_1:4.8.1-3 libgdbm3_1.8.3-12 libglib2.0-0_2.36.3-1 libgmp10_2:5.1.2+dfsg-1 libgmpxx4ldbl_2:5.1.2+dfsg-1 libgomp1_4.8.1-3 libgpm2_1.20.4-6 libisl10_0.11.2-1 libitm1_4.8.1-3 liblocale-gettext-perl_1.05-7+b1 liblzma5_5.1.1alpha+20120614-2 libmagic1_1:5.14-2 libmount1_2.20.1-5.4 libmpc2_0.9-4 libmpc3_1.0.1-1 libmpfr4_3.1.1-1 libncurses5_5.9+20130608-1 libpam-modules_1.1.3-9 libpam-modules-bin_1.1.3-9 libpam-runtime_1.1.3-9 libpam0g_1.1.3-9 libpcre3_1:8.31-2 libpipeline1_1.2.4-1 libppl-c4_1:1.0-7 libppl12_1:1.0-7 libquadmath0_4.8.1-3 libreadline6_6.2+dfsg-0.1 libselinux1_2.1.13-2 libsemanage-common_2.1.10-2 libsemanage1_2.1.10-2 libsepol1_2.1.9-2 libsigsegv2_2.9-4 libslang2_2.2.4-15 libss2_1.42.5-1.1 libstdc++-4.8-dev_4.8.1-3 libstdc++6_4.8.1-3 libstdc++6-4.6-dev_4.6.4-4 libswitch-perl_2.16-2 libtext-charwidth-perl_0.04-7+b1 libtext-iconv-perl_1.7-5 libtext-wrapi18n-perl_0.06-7 libtimedate-perl_1.2000-1 libtinfo5_5.9+20130608-1 libtool_2.4.2-1.2 libtsan0_4.8.1-3 libunistring0_0.9.3-5 libusb-0.1-4_2:0.1.12-23.2 libustr-1.0-1_1.0.4-3 libuuid1_2.20.1-5.4 libxml2_2.9.1+dfsg1-2 linux-libc-dev_3.9.6-1 login_1:4.1.5.1-1 lsb-base_4.1+Debian12 m4_1.4.16-5 make_3.81-8.2 man-db_2.6.3-7 mawk_1.3.3-17 mount_2.20.1-5.4 multiarch-support_2.17-5 ncurses-base_5.9+20130608-1 ncurses-bin_5.9+20130608-1 passwd_1:4.1.5.1-1 patch_2.6.1-3 perl_5.14.2-21 perl-base_5.14.2-21 perl-modules_5.14.2-21 po-debconf_1.0.16+nmu2 readline-common_6.2+dfsg-0.1 sbuild-build-depends-asn1c-dummy_0.invalid.0 sbuild-build-depends-core-dummy_0.invalid.0 sed_4.2.2-1 sensible-utils_0.0.9 sudo_1.8.5p2-1+nmu1 sysv-rc_2.88dsf-41 sysvinit_2.88dsf-41 sysvinit-utils_2.88dsf-41 tar_1.26+dfsg-6 tzdata_2013c-2 ucf_3.0027 util-linux_2.20.1-5.4 vim_2:7.3.923-2 vim-common_2:7.3.923-2 vim-runtime_2:7.3.923-2 xz-utils_5.1.1alpha+20120614-2 zlib1g_1:1.2.8.dfsg-1
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/sbuild-nonexistent/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Thu Nov 8 13:01:21 2012 UTC using RSA key ID 9D80F36D
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./asn1c_0.9.21.dfsg1-3.dsc
dpkg-source: info: extracting asn1c in asn1c-0.9.21.dfsg1
dpkg-source: info: unpacking asn1c_0.9.21.dfsg1.orig.tar.gz
dpkg-source: info: unpacking asn1c_0.9.21.dfsg1-3.debian.tar.gz
dpkg-source: info: applying 00_norfcsamples.diff
dpkg-source: info: applying 01_hardening.diff
dpkg-source: info: applying 02_asnctfail.diff
dpkg-source: info: applying 03_nodebugoutcheck.diff
dpkg-source: info: applying 04_nopdf.diff
dpkg-source: info: applying 05_nooverflowtests.diff
dpkg-source: info: applying 06_implicitdecl.diff
dpkg-source: info: applying 07_asneeded.diff
Check disc space
────────────────
Sufficient free space for build
User Environment
────────────────
HOME=/sbuild-nonexistent
LOGNAME=user
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SCHROOT_ALIAS_NAME=unstable-amd64-sbuild
SCHROOT_CHROOT_NAME=unstable-amd64-sbuild
SCHROOT_COMMAND=env
SCHROOT_GID=1000
SCHROOT_GROUP=user
SCHROOT_SESSION_ID=unstable-amd64-sbuild-ee608ff5-71aa-45aa-9303-2096c7dcf8e4
SCHROOT_UID=1000
SCHROOT_USER=user
SHELL=/bin/sh
USER=user
dpkg-buildpackage
─────────────────
dpkg-buildpackage: source package asn1c
dpkg-buildpackage: source version 0.9.21.dfsg1-3
dpkg-buildpackage: source changed by Eugene Seliverstov <theirix@gmail.com>
dpkg-source --before-build asn1c-0.9.21.dfsg1
dpkg-buildpackage: host architecture amd64
fakeroot debian/rules clean
dh clean --with autoreconf
dh_testdir
debian/rules override_dh_auto_clean
make[1]: Entering directory `/«PKGBUILDDIR»'
dh_auto_clean
rm -rf asn1c/tests/test-check-*
make[1]: Leaving directory `/«PKGBUILDDIR»'
dh_autoreconf_clean
dh_clean
rm -f debian/asn1c.substvars
rm -f debian/asn1c.*.debhelper
rm -rf debian/asn1c/
rm -f debian/*.debhelper.log
rm -f debian/files
find . \( \( -type f -a \
\( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \
-o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \
-o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \
-o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \
\) -exec rm -f {} \; \) -o \
\( -type d -a -name autom4te.cache -prune -exec rm -rf {} \; \) \)
rm -f *-stamp
dpkg-source -b asn1c-0.9.21.dfsg1
dpkg-source: info: using source format `3.0 (quilt)'
dpkg-source: info: building asn1c using existing ./asn1c_0.9.21.dfsg1.orig.tar.gz
dpkg-source: info: building asn1c in asn1c_0.9.21.dfsg1-3.debian.tar.gz
dpkg-source: info: building asn1c in asn1c_0.9.21.dfsg1-3.dsc
debian/rules build
dh build --with autoreconf
dh_testdir
dh_autoreconf
find ! -ipath "./debian/*" -a ! \( -path '*/.git/*' -o -path '*/.hg/*' -o -path '*/.bzr/*' -o -path '*/.svn/*' -o -path '*/CVS/*' \) -a -type f -exec md5sum {} \; > debian/autoreconf.before
autoreconf -f -i
aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
configure.in:6: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.in:6: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
parallel-tests: installing './test-driver'
configure.in: installing './ylwrap'
find ! -ipath "./debian/*" -a ! \( -path '*/.git/*' -o -path '*/.hg/*' -o -path '*/.bzr/*' -o -path '*/.svn/*' -o -path '*/CVS/*' \) -a -type f -exec md5sum {} \; > debian/autoreconf.after
dh_auto_configure
./configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode --disable-dependency-tracking
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking how to print strings... printf
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... none
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for autoconf... /usr/bin/autoconf
checking for autoheader... /usr/bin/autoheader
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) none
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking for bison... no
checking for byacc... no
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking for ar... /usr/bin/ar
checking for ANSI C header files... (cached) yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking whether byte ordering is bigendian... no
checking for off_t... yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for intmax_t... yes
checking for strtoimax... yes
checking for strtoll... yes
checking for mergesort... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating skeletons/standard-modules/Makefile
config.status: creating skeletons/tests/Makefile
config.status: creating libasn1compiler/Makefile
config.status: creating libasn1parser/Makefile
config.status: creating libasn1print/Makefile
config.status: creating asn1c/webcgi/Makefile
config.status: creating asn1c/tests/Makefile
config.status: creating libasn1fix/Makefile
config.status: creating skeletons/Makefile
config.status: creating samples/Makefile
config.status: creating tests/Makefile
config.status: creating asn1c/Makefile
config.status: creating doc/Makefile
config.status: creating asn1c.spec
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
dh_auto_build
make -j1
make[1]: Entering directory `/«PKGBUILDDIR»'
make all-recursive
make[2]: Entering directory `/«PKGBUILDDIR»'
Making all in libasn1parser
make[3]: Entering directory `/«PKGBUILDDIR»/libasn1parser'
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1parser.lo asn1parser.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1parser.c -fPIC -DPIC -o .libs/asn1parser.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1parser.c -o asn1parser.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_y.lo asn1p_y.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_y.c -fPIC -DPIC -o .libs/asn1p_y.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_y.c -o asn1p_y.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_l.lo asn1p_l.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_l.c -fPIC -DPIC -o .libs/asn1p_l.o
asn1p_l.c:3521:12: warning: 'input' defined but not used [-Wunused-function]
static int input()
^
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_l.c -o asn1p_l.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_module.lo asn1p_module.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_module.c -fPIC -DPIC -o .libs/asn1p_module.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_module.c -o asn1p_module.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_oid.lo asn1p_oid.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_oid.c -fPIC -DPIC -o .libs/asn1p_oid.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_oid.c -o asn1p_oid.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_value.lo asn1p_value.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_value.c -fPIC -DPIC -o .libs/asn1p_value.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_value.c -o asn1p_value.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_expr.lo asn1p_expr.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_expr.c -fPIC -DPIC -o .libs/asn1p_expr.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_expr.c -o asn1p_expr.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_xports.lo asn1p_xports.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_xports.c -fPIC -DPIC -o .libs/asn1p_xports.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_xports.c -o asn1p_xports.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_constr.lo asn1p_constr.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_constr.c -fPIC -DPIC -o .libs/asn1p_constr.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_constr.c -o asn1p_constr.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_param.lo asn1p_param.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_param.c -fPIC -DPIC -o .libs/asn1p_param.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_param.c -o asn1p_param.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_class.lo asn1p_class.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_class.c -fPIC -DPIC -o .libs/asn1p_class.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_class.c -o asn1p_class.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1p_ref.lo asn1p_ref.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_ref.c -fPIC -DPIC -o .libs/asn1p_ref.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1p_ref.c -o asn1p_ref.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -all-static -Wl,-z,relro -o libasn1parser.la asn1parser.lo asn1p_y.lo asn1p_l.lo asn1p_module.lo asn1p_oid.lo asn1p_value.lo asn1p_expr.lo asn1p_xports.lo asn1p_constr.lo asn1p_param.lo asn1p_class.lo asn1p_ref.lo
libtool: link: /usr/bin/ar cru .libs/libasn1parser.a asn1parser.o asn1p_y.o asn1p_l.o asn1p_module.o asn1p_oid.o asn1p_value.o asn1p_expr.o asn1p_xports.o asn1p_constr.o asn1p_param.o asn1p_class.o asn1p_ref.o
libtool: link: ranlib .libs/libasn1parser.a
libtool: link: ( cd ".libs" && rm -f "libasn1parser.la" && ln -s "../libasn1parser.la" "libasn1parser.la" )
make[3]: Leaving directory `/«PKGBUILDDIR»/libasn1parser'
Making all in libasn1fix
make[3]: Entering directory `/«PKGBUILDDIR»/libasn1fix'
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix.lo asn1fix.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix.c -fPIC -DPIC -o .libs/asn1fix.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix.c -o asn1fix.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_misc.lo asn1fix_misc.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_misc.c -fPIC -DPIC -o .libs/asn1fix_misc.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_misc.c -o asn1fix_misc.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_value.lo asn1fix_value.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_value.c -fPIC -DPIC -o .libs/asn1fix_value.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_value.c -o asn1fix_value.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_compat.lo asn1fix_compat.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_compat.c -fPIC -DPIC -o .libs/asn1fix_compat.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_compat.c -o asn1fix_compat.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_constr.lo asn1fix_constr.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_constr.c -fPIC -DPIC -o .libs/asn1fix_constr.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_constr.c -o asn1fix_constr.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_cstring.lo asn1fix_cstring.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_cstring.c -fPIC -DPIC -o .libs/asn1fix_cstring.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_cstring.c -o asn1fix_cstring.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_retrieve.lo asn1fix_retrieve.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_retrieve.c -fPIC -DPIC -o .libs/asn1fix_retrieve.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_retrieve.c -o asn1fix_retrieve.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_bitstring.lo asn1fix_bitstring.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_bitstring.c -fPIC -DPIC -o .libs/asn1fix_bitstring.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_bitstring.c -o asn1fix_bitstring.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_constraint.lo asn1fix_constraint.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_constraint.c -fPIC -DPIC -o .libs/asn1fix_constraint.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_constraint.c -o asn1fix_constraint.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_integer.lo asn1fix_integer.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_integer.c -fPIC -DPIC -o .libs/asn1fix_integer.o
asn1fix_integer.c:110:1: warning: '_asn1f_make_sure_type_is' defined but not used [-Wunused-function]
_asn1f_make_sure_type_is(arg_t *arg, asn1p_expr_t *expr, asn1p_expr_type_e type) {
^
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_integer.c -o asn1fix_integer.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_crange.lo asn1fix_crange.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_crange.c -fPIC -DPIC -o .libs/asn1fix_crange.o
asn1fix_crange.c:166:1: warning: '_range_print' defined but not used [-Wunused-function]
_range_print(const asn1cnst_range_t *range) {
^
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_crange.c -o asn1fix_crange.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_dereft.lo asn1fix_dereft.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_dereft.c -fPIC -DPIC -o .libs/asn1fix_dereft.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_dereft.c -o asn1fix_dereft.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_derefv.lo asn1fix_derefv.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_derefv.c -fPIC -DPIC -o .libs/asn1fix_derefv.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_derefv.c -o asn1fix_derefv.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_export.lo asn1fix_export.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_export.c -fPIC -DPIC -o .libs/asn1fix_export.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_export.c -o asn1fix_export.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_param.lo asn1fix_param.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_param.c -fPIC -DPIC -o .libs/asn1fix_param.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_param.c -o asn1fix_param.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_class.lo asn1fix_class.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_class.c -fPIC -DPIC -o .libs/asn1fix_class.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_class.c -o asn1fix_class.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_tags.lo asn1fix_tags.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_tags.c -fPIC -DPIC -o .libs/asn1fix_tags.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_tags.c -o asn1fix_tags.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_enum.lo asn1fix_enum.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_enum.c -fPIC -DPIC -o .libs/asn1fix_enum.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_enum.c -o asn1fix_enum.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_cws.lo asn1fix_cws.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_cws.c -fPIC -DPIC -o .libs/asn1fix_cws.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_cws.c -o asn1fix_cws.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1fix_constraint_compat.lo asn1fix_constraint_compat.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_constraint_compat.c -fPIC -DPIC -o .libs/asn1fix_constraint_compat.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1fix_constraint_compat.c -o asn1fix_constraint_compat.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -all-static -Wl,-z,relro -o libasn1fix.la asn1fix.lo asn1fix_misc.lo asn1fix_value.lo asn1fix_compat.lo asn1fix_constr.lo asn1fix_cstring.lo asn1fix_retrieve.lo asn1fix_bitstring.lo asn1fix_constraint.lo asn1fix_integer.lo asn1fix_crange.lo asn1fix_dereft.lo asn1fix_derefv.lo asn1fix_export.lo asn1fix_param.lo asn1fix_class.lo asn1fix_tags.lo asn1fix_enum.lo asn1fix_cws.lo asn1fix_constraint_compat.lo
libtool: link: /usr/bin/ar cru .libs/libasn1fix.a asn1fix.o asn1fix_misc.o asn1fix_value.o asn1fix_compat.o asn1fix_constr.o asn1fix_cstring.o asn1fix_retrieve.o asn1fix_bitstring.o asn1fix_constraint.o asn1fix_integer.o asn1fix_crange.o asn1fix_dereft.o asn1fix_derefv.o asn1fix_export.o asn1fix_param.o asn1fix_class.o asn1fix_tags.o asn1fix_enum.o asn1fix_cws.o asn1fix_constraint_compat.o
libtool: link: ranlib .libs/libasn1fix.a
libtool: link: ( cd ".libs" && rm -f "libasn1fix.la" && ln -s "../libasn1fix.la" "libasn1fix.la" )
make[3]: Leaving directory `/«PKGBUILDDIR»/libasn1fix'
Making all in libasn1print
make[3]: Entering directory `/«PKGBUILDDIR»/libasn1print'
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1print.lo asn1print.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1print.c -fPIC -DPIC -o .libs/asn1print.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1print.c -o asn1print.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -all-static -Wl,-z,relro -o libasn1print.la asn1print.lo
libtool: link: /usr/bin/ar cru .libs/libasn1print.a asn1print.o
libtool: link: ranlib .libs/libasn1print.a
libtool: link: ( cd ".libs" && rm -f "libasn1print.la" && ln -s "../libasn1print.la" "libasn1print.la" )
make[3]: Leaving directory `/«PKGBUILDDIR»/libasn1print'
Making all in libasn1compiler
make[3]: Entering directory `/«PKGBUILDDIR»/libasn1compiler'
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1compiler.lo asn1compiler.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1compiler.c -fPIC -DPIC -o .libs/asn1compiler.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1compiler.c -o asn1compiler.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1c_misc.lo asn1c_misc.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_misc.c -fPIC -DPIC -o .libs/asn1c_misc.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_misc.c -o asn1c_misc.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1c_out.lo asn1c_out.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_out.c -fPIC -DPIC -o .libs/asn1c_out.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_out.c -o asn1c_out.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1c_lang.lo asn1c_lang.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_lang.c -fPIC -DPIC -o .libs/asn1c_lang.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_lang.c -o asn1c_lang.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1c_save.lo asn1c_save.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_save.c -fPIC -DPIC -o .libs/asn1c_save.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_save.c -o asn1c_save.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1c_C.lo asn1c_C.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_C.c -fPIC -DPIC -o .libs/asn1c_C.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_C.c -o asn1c_C.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1c_constraint.lo asn1c_constraint.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_constraint.c -fPIC -DPIC -o .libs/asn1c_constraint.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_constraint.c -o asn1c_constraint.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1c_compat.lo asn1c_compat.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_compat.c -fPIC -DPIC -o .libs/asn1c_compat.o
asn1c_compat.c: In function 'asn1c_open_file':
asn1c_compat.c:71:2: warning: ignoring return value of 'ftruncate', declared with attribute warn_unused_result [-Wunused-result]
(void)ftruncate(fd, 0);
^
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_compat.c -o asn1c_compat.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c -o asn1c_fdeps.lo asn1c_fdeps.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_fdeps.c -fPIC -DPIC -o .libs/asn1c_fdeps.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -I../libasn1fix -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c_fdeps.c -o asn1c_fdeps.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -all-static -Wl,-z,relro -o libasn1compiler.la asn1compiler.lo asn1c_misc.lo asn1c_out.lo asn1c_lang.lo asn1c_save.lo asn1c_C.lo asn1c_constraint.lo asn1c_compat.lo asn1c_fdeps.lo
libtool: link: /usr/bin/ar cru .libs/libasn1compiler.a asn1compiler.o asn1c_misc.o asn1c_out.o asn1c_lang.o asn1c_save.o asn1c_C.o asn1c_constraint.o asn1c_compat.o asn1c_fdeps.o
libtool: link: ranlib .libs/libasn1compiler.a
libtool: link: ( cd ".libs" && rm -f "libasn1compiler.la" && ln -s "../libasn1compiler.la" "libasn1compiler.la" )
make[3]: Leaving directory `/«PKGBUILDDIR»/libasn1compiler'
Making all in skeletons
make[3]: Entering directory `/«PKGBUILDDIR»/skeletons'
Making all in standard-modules
make[4]: Entering directory `/«PKGBUILDDIR»/skeletons/standard-modules'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/«PKGBUILDDIR»/skeletons/standard-modules'
Making all in tests
make[4]: Entering directory `/«PKGBUILDDIR»/skeletons/tests'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/«PKGBUILDDIR»/skeletons/tests'
make[4]: Entering directory `/«PKGBUILDDIR»/skeletons'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/«PKGBUILDDIR»/skeletons'
make[3]: Leaving directory `/«PKGBUILDDIR»/skeletons'
Making all in samples
make[3]: Entering directory `/«PKGBUILDDIR»/samples'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/«PKGBUILDDIR»/samples'
Making all in tests
make[3]: Entering directory `/«PKGBUILDDIR»/tests'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/«PKGBUILDDIR»/tests'
Making all in doc
make[3]: Entering directory `/«PKGBUILDDIR»/doc'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/«PKGBUILDDIR»/doc'
Making all in asn1c
make[3]: Entering directory `/«PKGBUILDDIR»/asn1c'
Making all in .
make[4]: Entering directory `/«PKGBUILDDIR»/asn1c'
gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1compiler -I../libasn1parser -I../libasn1print -I../libasn1fix -I../skeletons -DDATADIR=\"/usr/share/asn1c\" -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c.c
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z,relro -o asn1c asn1c.o ../libasn1parser/libasn1parser.la ../libasn1print/libasn1print.la ../libasn1fix/libasn1fix.la ../libasn1compiler/libasn1compiler.la
libtool: link: gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z -Wl,relro -o asn1c asn1c.o ../libasn1parser/.libs/libasn1parser.a ../libasn1print/.libs/libasn1print.a ../libasn1fix/.libs/libasn1fix.a ../libasn1compiler/.libs/libasn1compiler.a
gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1compiler -I../libasn1parser -I../libasn1print -I../libasn1fix -I../skeletons -DDATADIR=\"/usr/share/asn1c\" -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c unber.c
In file included from unber.c:38:0:
../skeletons/asn_codecs_prim.c: In function 'ber_decode_primitive':
../skeletons/asn_codecs_prim.c:47:4: warning: 'length' may be used uninitialized in this function [-Wmaybe-uninitialized]
if(length > (ber_tlv_len_t)size) {
^
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z,relro -o unber unber.o
libtool: link: gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z -Wl,relro -o unber unber.o
gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1compiler -I../libasn1parser -I../libasn1print -I../libasn1fix -I../skeletons -DDATADIR=\"/usr/share/asn1c\" -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c enber.c
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z,relro -o enber enber.o
libtool: link: gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z -Wl,relro -o enber enber.o
make[4]: Leaving directory `/«PKGBUILDDIR»/asn1c'
Making all in webcgi
make[4]: Entering directory `/«PKGBUILDDIR»/asn1c/webcgi'
gcc -DHAVE_CONFIG_H -I. -I../.. -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c asn1c-suid-helper.c
asn1c-suid-helper.c: In function 'main':
asn1c-suid-helper.c:21:9: warning: ignoring return value of 'setgid', declared with attribute warn_unused_result [-Wunused-result]
setgid(getgid());
^
asn1c-suid-helper.c:22:9: warning: ignoring return value of 'setuid', declared with attribute warn_unused_result [-Wunused-result]
setuid(getuid());
^
asn1c-suid-helper.c:32:8: warning: ignoring return value of 'setgid', declared with attribute warn_unused_result [-Wunused-result]
setgid(getgid());
^
asn1c-suid-helper.c:33:8: warning: ignoring return value of 'setuid', declared with attribute warn_unused_result [-Wunused-result]
setuid(getuid());
^
/bin/bash ../../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z,relro -o asn1c-suid-helper asn1c-suid-helper.o
libtool: link: gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z -Wl,relro -o asn1c-suid-helper asn1c-suid-helper.o
make[4]: Leaving directory `/«PKGBUILDDIR»/asn1c/webcgi'
Making all in tests
make[4]: Entering directory `/«PKGBUILDDIR»/asn1c/tests'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/«PKGBUILDDIR»/asn1c/tests'
make[3]: Leaving directory `/«PKGBUILDDIR»/asn1c'
make[3]: Entering directory `/«PKGBUILDDIR»'
make[3]: Leaving directory `/«PKGBUILDDIR»'
make[2]: Leaving directory `/«PKGBUILDDIR»'
make[1]: Leaving directory `/«PKGBUILDDIR»'
dh_auto_test
make -j1 check
make[1]: Entering directory `/«PKGBUILDDIR»'
Making check in libasn1parser
make[2]: Entering directory `/«PKGBUILDDIR»/libasn1parser'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/«PKGBUILDDIR»/libasn1parser'
Making check in libasn1fix
make[2]: Entering directory `/«PKGBUILDDIR»/libasn1fix'
make check_fixer
make[3]: Entering directory `/«PKGBUILDDIR»/libasn1fix'
gcc -DHAVE_CONFIG_H -I. -I.. -I../libasn1parser -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -c check_fixer.c
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z,relro -o check_fixer check_fixer.o libasn1fix.la ../libasn1parser/libasn1parser.la
libtool: link: gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -Wshadow -Wcast-qual -Wcast-align -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations -Wl,-z -Wl,relro -o check_fixer check_fixer.o ./.libs/libasn1fix.a ../libasn1parser/.libs/libasn1parser.a
make[3]: Leaving directory `/«PKGBUILDDIR»/libasn1fix'
make check-TESTS
make[3]: Entering directory `/«PKGBUILDDIR»/libasn1fix'
make[4]: Entering directory `/«PKGBUILDDIR»/libasn1fix'
make[5]: Entering directory `/«PKGBUILDDIR»/libasn1fix'
make[5]: Nothing to be done for `../tests/00-empty-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/01-empty-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/02-garbage-NP.asn1.log'.
make[5]: Nothing to be done for `../tests/03-enum-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/04-enum-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/05-enum-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/06-enum-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/07-int-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/08-int-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/09-int-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/10-int-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/100-class-ref-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/101-class-ref-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/102-class-ref-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/103-reference-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/104-param-1-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/105-param-2-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/106-param-constr-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/107-param-constr-2-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/108-param-constr-3-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/109-bit-string-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/11-int-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/110-param-3-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/111-param-4-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/112-param-class-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/113-bit-string-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/114-bit-string-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/115-bit-string-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/116-bit-string-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/117-real-constraint-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/12-int-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/13-resolver-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/14-resolver-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/15-resolver-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/16-constraint-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/17-tags-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/18-class-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/19-param-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/20-constr-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/21-tags-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/22-tags-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/23-bits-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/24-sequence-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/25-misc-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/26-sequence-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/27-set-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/28-tags-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/29-tags-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/30-set-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/31-set-of-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/32-sequence-of-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/33-misc-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/34-class-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/35-set-choice-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/36-indirect-choice-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/37-indirect-choice-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/38-comments-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/39-sequence-of-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/40-int-optional-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/41-int-optional-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/42-real-life-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/43-recursion-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/44-choice-in-sequence-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/45-undefined-type-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/46-redefine-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/47-set-ext-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/48-real-life-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/49-real-life-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/50-constraint-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/51-constraint-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/52-constraint-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/53-constraint-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/54-constraint-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/55-components-of-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/56-components-of-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/57-components-of-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/58-param-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/59-choice-extended-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/60-any-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/61-any-1-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/62-any-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/63-any-2-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/64-oid-constr-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/65-multi-tag-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/66-ref-simple-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/67-embedded-choice-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/68-enum-default-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/69-reserved-words-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/70-xer-test-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/71-duplicate-types-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/72-same-names-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/73-circular-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/74-int-enum-constraints-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/75-duplicate-modules-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/76-duplicate-modules-SW.asn1.log'.
make[5]: Nothing to be done for `../tests/77-str-default-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/78-str-default-SE.asn1.log'.
make[5]: Nothing to be done for `../tests/79-constrained-by-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/80-chardefs-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/81-type-default-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/82-with-comps-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/83-with-comps-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/84-param-tags-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/85-comments-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/86-atags-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/87-old-syntax-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/88-integer-enum-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/89-bit-string-enum-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/90-cond-int-type-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/91-cond-int-blessSize-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/92-circular-loops-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/93-asn1c-controls-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/94-set-optionals-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/95-choice-per-order-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/96-type-identifier-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/97-type-identifier-SW.asn1.log'.
make[5]: Nothing to be done for `../tests/98-attribute-class-OK.asn1.log'.
make[5]: Nothing to be done for `../tests/99-class-sample-OK.asn1.log'.
make[5]: Leaving directory `/«PKGBUILDDIR»/libasn1fix'
fatal: making test-suite.log: failed to create ../tests/00-empty-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/00-empty-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/01-empty-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/01-empty-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/02-garbage-NP.asn1.trs
fatal: making test-suite.log: failed to create ../tests/02-garbage-NP.asn1.log
fatal: making test-suite.log: failed to create ../tests/03-enum-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/03-enum-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/04-enum-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/04-enum-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/05-enum-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/05-enum-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/06-enum-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/06-enum-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/07-int-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/07-int-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/08-int-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/08-int-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/09-int-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/09-int-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/10-int-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/10-int-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/100-class-ref-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/100-class-ref-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/101-class-ref-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/101-class-ref-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/102-class-ref-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/102-class-ref-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/103-reference-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/103-reference-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/104-param-1-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/104-param-1-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/105-param-2-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/105-param-2-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/106-param-constr-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/106-param-constr-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/107-param-constr-2-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/107-param-constr-2-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/108-param-constr-3-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/108-param-constr-3-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/109-bit-string-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/109-bit-string-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/11-int-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/11-int-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/110-param-3-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/110-param-3-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/111-param-4-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/111-param-4-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/112-param-class-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/112-param-class-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/113-bit-string-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/113-bit-string-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/114-bit-string-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/114-bit-string-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/115-bit-string-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/115-bit-string-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/116-bit-string-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/116-bit-string-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/117-real-constraint-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/117-real-constraint-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/12-int-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/12-int-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/13-resolver-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/13-resolver-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/14-resolver-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/14-resolver-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/15-resolver-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/15-resolver-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/16-constraint-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/16-constraint-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/17-tags-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/17-tags-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/18-class-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/18-class-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/19-param-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/19-param-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/20-constr-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/20-constr-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/21-tags-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/21-tags-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/22-tags-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/22-tags-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/23-bits-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/23-bits-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/24-sequence-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/24-sequence-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/25-misc-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/25-misc-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/26-sequence-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/26-sequence-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/27-set-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/27-set-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/28-tags-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/28-tags-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/29-tags-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/29-tags-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/30-set-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/30-set-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/31-set-of-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/31-set-of-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/32-sequence-of-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/32-sequence-of-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/33-misc-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/33-misc-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/34-class-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/34-class-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/35-set-choice-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/35-set-choice-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/36-indirect-choice-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/36-indirect-choice-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/37-indirect-choice-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/37-indirect-choice-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/38-comments-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/38-comments-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/39-sequence-of-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/39-sequence-of-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/40-int-optional-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/40-int-optional-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/41-int-optional-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/41-int-optional-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/42-real-life-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/42-real-life-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/43-recursion-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/43-recursion-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/44-choice-in-sequence-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/44-choice-in-sequence-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/45-undefined-type-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/45-undefined-type-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/46-redefine-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/46-redefine-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/47-set-ext-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/47-set-ext-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/48-real-life-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/48-real-life-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/49-real-life-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/49-real-life-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/50-constraint-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/50-constraint-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/51-constraint-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/51-constraint-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/52-constraint-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/52-constraint-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/53-constraint-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/53-constraint-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/54-constraint-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/54-constraint-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/55-components-of-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/55-components-of-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/56-components-of-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/56-components-of-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/57-components-of-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/57-components-of-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/58-param-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/58-param-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/59-choice-extended-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/59-choice-extended-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/60-any-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/60-any-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/61-any-1-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/61-any-1-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/62-any-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/62-any-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/63-any-2-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/63-any-2-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/64-oid-constr-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/64-oid-constr-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/65-multi-tag-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/65-multi-tag-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/66-ref-simple-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/66-ref-simple-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/67-embedded-choice-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/67-embedded-choice-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/68-enum-default-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/68-enum-default-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/69-reserved-words-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/69-reserved-words-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/70-xer-test-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/70-xer-test-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/71-duplicate-types-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/71-duplicate-types-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/72-same-names-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/72-same-names-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/73-circular-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/73-circular-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/74-int-enum-constraints-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/74-int-enum-constraints-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/75-duplicate-modules-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/75-duplicate-modules-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/76-duplicate-modules-SW.asn1.trs
fatal: making test-suite.log: failed to create ../tests/76-duplicate-modules-SW.asn1.log
fatal: making test-suite.log: failed to create ../tests/77-str-default-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/77-str-default-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/78-str-default-SE.asn1.trs
fatal: making test-suite.log: failed to create ../tests/78-str-default-SE.asn1.log
fatal: making test-suite.log: failed to create ../tests/79-constrained-by-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/79-constrained-by-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/80-chardefs-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/80-chardefs-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/81-type-default-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/81-type-default-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/82-with-comps-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/82-with-comps-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/83-with-comps-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/83-with-comps-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/84-param-tags-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/84-param-tags-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/85-comments-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/85-comments-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/86-atags-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/86-atags-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/87-old-syntax-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/87-old-syntax-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/88-integer-enum-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/88-integer-enum-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/89-bit-string-enum-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/89-bit-string-enum-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/90-cond-int-type-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/90-cond-int-type-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/91-cond-int-blessSize-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/91-cond-int-blessSize-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/92-circular-loops-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/92-circular-loops-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/93-asn1c-controls-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/93-asn1c-controls-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/94-set-optionals-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/94-set-optionals-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/95-choice-per-order-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/95-choice-per-order-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/96-type-identifier-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/96-type-identifier-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/97-type-identifier-SW.asn1.trs
fatal: making test-suite.log: failed to create ../tests/97-type-identifier-SW.asn1.log
fatal: making test-suite.log: failed to create ../tests/98-attribute-class-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/98-attribute-class-OK.asn1.log
fatal: making test-suite.log: failed to create ../tests/99-class-sample-OK.asn1.trs
fatal: making test-suite.log: failed to create ../tests/99-class-sample-OK.asn1.log
make[4]: *** [test-suite.log] Error 1
make[4]: Leaving directory `/«PKGBUILDDIR»/libasn1fix'
make[3]: *** [check-TESTS] Error 2
make[2]: *** [check-am] Error 2
make[1]: *** [check-recursive] Error 1
dh_auto_test: make -j1 check returned exit code 2
make[3]: Leaving directory `/«PKGBUILDDIR»/libasn1fix'
make[2]: Leaving directory `/«PKGBUILDDIR»/libasn1fix'
make[1]: Leaving directory `/«PKGBUILDDIR»'
make: *** [build] Error 29
dpkg-buildpackage: error: debian/rules build gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20130621-0606
Finished
────────
E: Build failure (dpkg-buildpackage died)
┌──────────────────────────────────────────────────────────────────────────────┐
│ Cleanup │
└──────────────────────────────────────────────────────────────────────────────┘
Purging /«BUILDDIR»
Not cleaning session: cloned chroot in use
┌──────────────────────────────────────────────────────────────────────────────┐
│ Summary │
└──────────────────────────────────────────────────────────────────────────────┘
Build Architecture: amd64
Build-Space: 18452
Build-Time: 53
Distribution: unstable
Fail-Stage: build
Host Architecture: amd64
Install-Time: 9
Job: asn1c_0.9.21.dfsg1-3
Machine Architecture: amd64
Package: asn1c
Package-Time: 86
Source-Version: 0.9.21.dfsg1-3
Space: 18452
Status: attempted
Version: 0.9.21.dfsg1-3
────────────────────────────────────────────────────────────────────────────────
Finished at 20130621-0606
Build needed 00:01:26, 18452k disc space
DC-Status: Failed 87.276411437s
DC-Time-Estimation: 87.276411437 versus expected 243 (r/m: 1.7842574642910043 ; m: 87.276411437)
|