rv = memcmp(image_in, image_in2, image_size); ^ burst_szip.c:36:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] put_pixel(pixel) ^ burst_szip.c: In function 'put_pixel': burst_szip.c:41:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (pixel > max) ^ burst_szip.c:50:23: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] ch = (pixel >> 24) & 0xff; ^ burst_szip.c:67:23: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] ch = (pixel >> 24) & 0xff; ^ burst_szip.c:73:15: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] ch = pixel >> 8; ^ burst_szip.c:82:15: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] ch = pixel >> 8; ^ burst_szip.c:86:3: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] putc(pixel, fp_out); ^ burst_szip.c: At top level: burst_szip.c:90:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] map_nn(sigma, end) ^ burst_szip.c: In function 'map_nn': burst_szip.c:99:7: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] xp = *sigma; ^ burst_szip.c:103:6: warning: conversion to 'int' from 'unsigned int' may change the sign of the result [-Wsign-conversion] x = *s; ^ burst_szip.c:108:15: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = del << 1; ^ burst_szip.c:110:4: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = x; ^ burst_szip.c:115:24: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = ((-del)<<1) - 1; ^ burst_szip.c:117:15: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = max-x; ^ burst_szip.c: At top level: burst_szip.c:125:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] random_scanline(pixels_per_block, width) ^ burst_szip.c: In function 'random_scanline': burst_szip.c:140:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (width > sizeof(scanline)/sizeof(unsigned)) ^ burst_szip.c:150:3: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] x = uni() * 6; ^ burst_szip.c:160:6: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:161:6: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:167:5: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:168:5: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] delta = uni() * 32; ^ burst_szip.c:183:6: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = low + uni() * delta; ^ burst_szip.c:184:6: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:190:5: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:191:5: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] delta = uni() * 128 + 1; ^ burst_szip.c:206:6: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] x = uni() * delta; ^ burst_szip.c:213:6: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:219:5: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:221:6: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:227:5: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] blocks = uni() * blocks + 1; ^ burst_szip.c:228:5: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:231:7: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c:237:5: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] pixel = uni() * (max+1); ^ burst_szip.c:238:5: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] delta = uni() * 8 + 1; ^ burst_szip.c:253:6: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] x = uni() * delta; ^ burst_szip.c:260:6: warning: conversion to 'unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] *s++ = pixel; ^ burst_szip.c: At top level: burst_szip.c:275:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] random_float_scanline(pixels_per_block, width) ^ burst_szip.c: In function 'random_float_scanline': burst_szip.c:286:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (width > sizeof(scanline)/sizeof(float)) ^ burst_szip.c:303:3: warning: conversion to 'float' from 'double' may alter its value [-Wconversion] scanline[i] = y; ^ burst_szip.c:307:2: warning: conversion to 'size_t' from 'int' may change the sign of the result [-Wsign-conversion] fwrite(scanline, width, sizeof(float), fp_out); ^ burst_szip.c:276:5: warning: unused parameter 'pixels_per_block' [-Wunused-parameter] int pixels_per_block; ^ burst_szip.c: At top level: burst_szip.c:311:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] random_double_scanline(pixels_per_block, width) ^ burst_szip.c: In function 'random_double_scanline': burst_szip.c:322:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (width > sizeof(scanline)/sizeof(float)) ^ burst_szip.c:349:2: warning: conversion to 'size_t' from 'int' may change the sign of the result [-Wsign-conversion] fwrite(scanline, width, sizeof(double), fp_out); ^ burst_szip.c:312:5: warning: unused parameter 'pixels_per_block' [-Wunused-parameter] int pixels_per_block; ^ burst_szip.c: At top level: burst_szip.c:353:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] usage(name) ^ burst_szip.c:361:1: warning: function declaration isn't a prototype [-Wstrict-prototypes] main(argc, argv) ^ burst_szip.c: In function 'main': burst_szip.c:450:4: warning: conversion to 'int' from 'double' may alter its value [-Wconversion] width = uni() * (width-1) + 1; ^ example.c:307:23: warning: 'bits_per_pixel' may be used uninitialized in this function [-Wmaybe-uninitialized] size = test_decoding(bits_per_pixel, image_out, size, image_in2, image_size, i); ^ /bin/sh ../libtool --tag=CC --mode=link /accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -ansi -pedantic -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -O -fomit-frame-pointer -finline-functions -o example example.o ../src/libsz.la -lm /bin/sh ../libtool --tag=CC --mode=link /accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -ansi -pedantic -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -O -fomit-frame-pointer -finline-functions -o burst_szip burst_szip.o ../test/libmcgill.la ../src/libsz.la -lm mkdir .libs /accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -ansi -pedantic -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -O -fomit-frame-pointer -finline-functions -o example example.o ../src/.libs/libsz.so -lm -Wl,--rpath -Wl,/accts/mlweber1/instance-0/output/build/szip-2.1/src/.libs /accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -ansi -pedantic -Wall -W -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -O -fomit-frame-pointer -finline-functions -o burst_szip burst_szip.o ../test/.libs/libmcgill.a ../src/.libs/libsz.so -lm -Wl,--rpath -Wl,/accts/mlweber1/instance-0/output/build/szip-2.1/src/.libs make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/examples' make[2]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[1]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1' >>> szip 2.1 Installing to staging directory PATH="/accts/mlweber1/instance-0/output/host/bin:/accts/mlweber1/instance-0/output/host/sbin:/usr/bin:/bin" /usr/bin/make -j32 DESTDIR=/accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot install -C /accts/mlweber1/instance-0/output/build/szip-2.1/ make[1]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1' Making install in src make[2]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/src' make[3]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/src' test -z "/usr/lib" || /bin/mkdir -p "/accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/lib" test -z "/usr/include" || /bin/mkdir -p "/accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/include" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libsz.la' '/accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/lib/libsz.la' /usr/bin/install -c -m 644 'ricehdf.h' '/accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/include/ricehdf.h' /usr/bin/install -c -m 644 'szip_adpt.h' '/accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/include/szip_adpt.h' /usr/bin/install -c -m 644 'szlib.h' '/accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/include/szlib.h' /usr/bin/install -c .libs/libsz.so.2.0.0 /accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/lib/libsz.so.2.0.0 (cd /accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so.2 || { rm -f libsz.so.2 && ln -s libsz.so.2.0.0 libsz.so.2; }; }) (cd /accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so || { rm -f libsz.so && ln -s libsz.so.2.0.0 libsz.so; }; }) /usr/bin/install -c .libs/libsz.lai /accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/lib/libsz.la libtool: install: warning: remember to run `libtool --finish /usr/lib' make[3]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/src' make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/src' Making install in test make[2]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/test' make[3]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/test' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/test' make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/test' Making install in examples make[2]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/examples' make[3]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/examples' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/examples' make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/examples' make[2]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[3]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[1]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1' >>> szip 2.1 Fixing libtool files >>> szip 2.1 Installing to target PATH="/accts/mlweber1/instance-0/output/host/bin:/accts/mlweber1/instance-0/output/host/sbin:/usr/bin:/bin" /usr/bin/make -j32 DESTDIR=/accts/mlweber1/instance-0/output/target install -C /accts/mlweber1/instance-0/output/build/szip-2.1/ make[1]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1' Making install in src make[2]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/src' make[3]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/src' test -z "/usr/lib" || /bin/mkdir -p "/accts/mlweber1/instance-0/output/target/usr/lib" test -z "/usr/include" || /bin/mkdir -p "/accts/mlweber1/instance-0/output/target/usr/include" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libsz.la' '/accts/mlweber1/instance-0/output/target/usr/lib/libsz.la' /usr/bin/install -c -m 644 'ricehdf.h' '/accts/mlweber1/instance-0/output/target/usr/include/ricehdf.h' /usr/bin/install -c -m 644 'szip_adpt.h' '/accts/mlweber1/instance-0/output/target/usr/include/szip_adpt.h' /usr/bin/install -c -m 644 'szlib.h' '/accts/mlweber1/instance-0/output/target/usr/include/szlib.h' /usr/bin/install -c .libs/libsz.so.2.0.0 /accts/mlweber1/instance-0/output/target/usr/lib/libsz.so.2.0.0 (cd /accts/mlweber1/instance-0/output/target/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so.2 || { rm -f libsz.so.2 && ln -s libsz.so.2.0.0 libsz.so.2; }; }) (cd /accts/mlweber1/instance-0/output/target/usr/lib && { ln -s -f libsz.so.2.0.0 libsz.so || { rm -f libsz.so && ln -s libsz.so.2.0.0 libsz.so; }; }) /usr/bin/install -c .libs/libsz.lai /accts/mlweber1/instance-0/output/target/usr/lib/libsz.la libtool: install: warning: remember to run `libtool --finish /usr/lib' make[3]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/src' make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/src' Making install in test make[2]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/test' make[3]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/test' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/test' make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/test' Making install in examples make[2]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/examples' make[3]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1/examples' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/examples' make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1/examples' make[2]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[3]: Entering directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[2]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1' make[1]: Leaving directory `/accts/mlweber1/instance-0/output/build/szip-2.1' PATH="/accts/mlweber1/instance-0/output/host/bin:/accts/mlweber1/instance-0/output/host/sbin:/usr/bin:/bin" BR2_DL_DIR=/accts/mlweber1/instance-0/dl BUILD_DIR=/accts/mlweber1/instance-0/output/build O=/accts/mlweber1/instance-0/output flock /accts/mlweber1/instance-0/dl/yavta/ support/download/dl-wrapper -c '82ff2efdb9787737b9f21b6f4759f077c827b238' -d '/accts/mlweber1/instance-0/dl/yavta' -D '/accts/mlweber1/instance-0/dl' -f 'yavta-82ff2efdb9787737b9f21b6f4759f077c827b238.tar.gz' -H 'package/yavta//yavta.hash' -n 'yavta-82ff2efdb9787737b9f21b6f4759f077c827b238' -N 'yavta' -o '/accts/mlweber1/instance-0/dl/yavta/yavta-82ff2efdb9787737b9f21b6f4759f077c827b238.tar.gz' -u http\|urlencode+http://rclinux-git.rockwellcollins.com/dl/yavta -u http\|urlencode+http://rclinux-git.rockwellcollins.com/dl -u git+git://git.ideasonboard.org/yavta.git -u http\|urlencode+http://sources.buildroot.net/yavta -u http\|urlencode+http://sources.buildroot.net -- WARNING: no hash file for yavta-82ff2efdb9787737b9f21b6f4759f077c827b238.tar.gz >>> yavta 82ff2efdb9787737b9f21b6f4759f077c827b238 Extracting gzip -d -c /accts/mlweber1/instance-0/dl/yavta/yavta-82ff2efdb9787737b9f21b6f4759f077c827b238.tar.gz | tar --strip-components=1 -C /accts/mlweber1/instance-0/output/build/yavta-82ff2efdb9787737b9f21b6f4759f077c827b238 -xf - >>> yavta 82ff2efdb9787737b9f21b6f4759f077c827b238 Patching >>> yavta 82ff2efdb9787737b9f21b6f4759f077c827b238 Configuring >>> yavta 82ff2efdb9787737b9f21b6f4759f077c827b238 Building /usr/bin/make -j32 PATH="/accts/mlweber1/instance-0/output/host/bin:/accts/mlweber1/instance-0/output/host/sbin:/usr/bin:/bin" AR="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-ar" AS="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-as" LD="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-ld" NM="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-nm" CC="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gcc" GCC="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gcc" CPP="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-cpp" CXX="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-g++" FC="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gfortran" F77="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gfortran" RANLIB="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-ranlib" READELF="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-readelf" STRIP="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-strip" OBJCOPY="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-objcopy" OBJDUMP="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-objdump" AR_FOR_BUILD="/usr/bin/ar" AS_FOR_BUILD="/usr/bin/as" CC_FOR_BUILD="/usr/bin/gcc" GCC_FOR_BUILD="/usr/bin/gcc" CXX_FOR_BUILD="/usr/bin/g++" LD_FOR_BUILD="/usr/bin/ld" CPPFLAGS_FOR_BUILD="-I/accts/mlweber1/instance-0/output/host/include" CFLAGS_FOR_BUILD="-O2 -I/accts/mlweber1/instance-0/output/host/include" CXXFLAGS_FOR_BUILD="-O2 -I/accts/mlweber1/instance-0/output/host/include" LDFLAGS_FOR_BUILD="-L/accts/mlweber1/instance-0/output/host/lib -Wl,-rpath,/accts/mlweber1/instance-0/output/host/lib" FCFLAGS_FOR_BUILD="" DEFAULT_ASSEMBLER="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-as" DEFAULT_LINKER="/accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-ld" CPPFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64" CFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os " CXXFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os " LDFLAGS="" FCFLAGS=" -Os " FFLAGS=" -Os " PKG_CONFIG="/accts/mlweber1/instance-0/output/host/bin/pkg-config" STAGING_DIR="/accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot" INTLTOOL_PERL=/usr/bin/perl -C /accts/mlweber1/instance-0/output/build/yavta-82ff2efdb9787737b9f21b6f4759f077c827b238 make[1]: Entering directory `/accts/mlweber1/instance-0/output/build/yavta-82ff2efdb9787737b9f21b6f4759f077c827b238' /accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c -o yavta.o yavta.c /accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-gcc -o yavta yavta.o -lrt make[1]: Leaving directory `/accts/mlweber1/instance-0/output/build/yavta-82ff2efdb9787737b9f21b6f4759f077c827b238' >>> yavta 82ff2efdb9787737b9f21b6f4759f077c827b238 Installing to target /usr/bin/install -m 0755 -D /accts/mlweber1/instance-0/output/build/yavta-82ff2efdb9787737b9f21b6f4759f077c827b238/yavta /accts/mlweber1/instance-0/output/target/usr/bin/yavta >>> Finalizing target directory # Check files that are touched by more than one package ./support/scripts/check-uniq-files -t target /accts/mlweber1/instance-0/output/build/packages-file-list.txt ./support/scripts/check-uniq-files -t staging /accts/mlweber1/instance-0/output/build/packages-file-list-staging.txt Warning: staging file "./usr/lib/libgthread-2.0.la" is touched by more than one package: [u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libevent_extra.la" is touched by more than one package: [u'libevent', u'libffi', u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libblkid.la" is touched by more than one package: [u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libuuid.la" is touched by more than one package: [u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libsndfile.la" is touched by more than one package: [u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libnl-route-3.la" is touched by more than one package: [u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libevent_pthreads.la" is touched by more than one package: [u'libevent', u'libffi', u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libgio-2.0.la" is touched by more than one package: [u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libnl-genl-3.la" is touched by more than one package: [u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libinotifytools.la" is touched by more than one package: [u'inotify-tools', u'jq', u'libevent', u'libffi', u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libpcrecpp.la" is touched by more than one package: [u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libnl-3.la" is touched by more than one package: [u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libnl-xfrm-3.la" is touched by more than one package: [u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libphidget21.la" is touched by more than one package: [u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libmount.la" is touched by more than one package: [u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libusb-1.0.la" is touched by more than one package: [u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libpcre.la" is touched by more than one package: [u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libnl-idiag-3.la" is touched by more than one package: [u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libusb.la" is touched by more than one package: [u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libevent.la" is touched by more than one package: [u'libevent', u'libffi', u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libglib-2.0.la" is touched by more than one package: [u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libfm-extra.la" is touched by more than one package: [u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libpcreposix.la" is touched by more than one package: [u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libgmodule-2.0.la" is touched by more than one package: [u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libgobject-2.0.la" is touched by more than one package: [u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libnl-nf-3.la" is touched by more than one package: [u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libffi.la" is touched by more than one package: [u'libffi', u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libmaxminddb.la" is touched by more than one package: [u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libjq.la" is touched by more than one package: [u'jq', u'libevent', u'libffi', u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libevent_core.la" is touched by more than one package: [u'libevent', u'libffi', u'pcre', u'libzlib', u'util-linux', u'libglib2', u'libfm-extra', u'libglob', u'libmaxminddb', u'libnl', u'libusb', u'libphidget', u'libsndfile', u'libusb-compat', u'php', u'rabbitmq-c', u'sg3_utils', u'szip'] Warning: staging file "./usr/lib/libsgutils2.la" is touched by more than one package: [u'sg3_utils', u'szip'] ./support/scripts/check-uniq-files -t host /accts/mlweber1/instance-0/output/build/packages-file-list-host.txt Warning: host file "./share/info/dir" is touched by more than one package: [u'host-gdb', u'host-m4', u'host-libtool', u'host-autoconf', u'host-automake', u'host-gettext', u'host-libffi', u'host-bison', u'host-gawk'] rm -f /accts/mlweber1/instance-0/output/target/usr/share/glib-2.0/schemas/*.xml /accts/mlweber1/instance-0/output/target/usr/share/glib-2.0/schemas/*.dtd /accts/mlweber1/instance-0/output/host/bin/glib-compile-schemas /accts/mlweber1/instance-0/output/host/i686-buildroot-linux-gnu/sysroot/usr/share/glib-2.0/schemas --targetdir=/accts/mlweber1/instance-0/output/target/usr/share/glib-2.0/schemas No schema files found: doing nothing. mkdir -p /accts/mlweber1/instance-0/output/target/etc echo "buildroot" > /accts/mlweber1/instance-0/output/target/etc/hostname /bin/sed -i -e '$a \127.0.1.1\tbuildroot' -e '/^127.0.1.1/d' /accts/mlweber1/instance-0/output/target/etc/hosts mkdir -p /accts/mlweber1/instance-0/output/target/etc echo "Welcome to Buildroot" > /accts/mlweber1/instance-0/output/target/etc/issue /bin/sed -i -e s,^root:[^:]*:,root::, /accts/mlweber1/instance-0/output/target/etc/shadow rm -f /accts/mlweber1/instance-0/output/target/bin/sh rm -f /accts/mlweber1/instance-0/output/build/locales.nopurge for i in C en_US locale-archive; do echo $i >> /accts/mlweber1/instance-0/output/build/locales.nopurge; done for dir in /accts/mlweber1/instance-0/output/target/usr/share/locale; do for langdir in $dir/*; do if [ -e "${langdir}" ]; then grep -qx "${langdir##*/}" /accts/mlweber1/instance-0/output/build/locales.nopurge || rm -rf $langdir; fi done; done if [ -d /accts/mlweber1/instance-0/output/target/usr/share/X11/locale ]; then for lang in C en_US; do if [ -f /accts/mlweber1/instance-0/output/target/usr/share/X11/locale/$lang/XLC_LOCALE ]; then echo "$lang/XLC_LOCALE: $lang"; fi done > /accts/mlweber1/instance-0/output/target/usr/share/X11/locale/locale.dir; fi rm -rf /accts/mlweber1/instance-0/output/target/usr/include /accts/mlweber1/instance-0/output/target/usr/share/aclocal \ /accts/mlweber1/instance-0/output/target/usr/lib/pkgconfig /accts/mlweber1/instance-0/output/target/usr/share/pkgconfig \ /accts/mlweber1/instance-0/output/target/usr/lib/cmake /accts/mlweber1/instance-0/output/target/usr/share/cmake find /accts/mlweber1/instance-0/output/target/usr/{lib,share}/ -name '*.cmake' -print0 | xargs -0 rm -f find /accts/mlweber1/instance-0/output/target/lib/ /accts/mlweber1/instance-0/output/target/usr/lib/ /accts/mlweber1/instance-0/output/target/usr/libexec/ \ \( -name '*.a' -o -name '*.la' \) -print0 | xargs -0 rm -f find: `/accts/mlweber1/instance-0/output/target/usr/libexec/': No such file or directory rm -rf /accts/mlweber1/instance-0/output/target/usr/share/gdb rm -rf /accts/mlweber1/instance-0/output/target/usr/share/bash-completion rm -rf /accts/mlweber1/instance-0/output/target/usr/share/zsh rm -rf /accts/mlweber1/instance-0/output/target/usr/man /accts/mlweber1/instance-0/output/target/usr/share/man rm -rf /accts/mlweber1/instance-0/output/target/usr/info /accts/mlweber1/instance-0/output/target/usr/share/info rm -rf /accts/mlweber1/instance-0/output/target/usr/doc /accts/mlweber1/instance-0/output/target/usr/share/doc rm -rf /accts/mlweber1/instance-0/output/target/usr/share/gtk-doc rmdir /accts/mlweber1/instance-0/output/target/usr/share 2>/dev/null || true find /accts/mlweber1/instance-0/output/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 /accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true find /accts/mlweber1/instance-0/output/target/lib/ -type f -name 'libpthread*.so*' | \ xargs -r /accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-strip --remove-section=.comment --remove-section=.note --strip-debug find /accts/mlweber1/instance-0/output/target/lib/ -type f -name 'ld-*.so*' | \ xargs -r /accts/mlweber1/instance-0/output/host/bin/i686-ctng-linux-gnu-strip --remove-section=.comment --remove-section=.note --strip-debug test -f /accts/mlweber1/instance-0/output/target/etc/ld.so.conf && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf file"; exit 1; } || true test -d /accts/mlweber1/instance-0/output/target/etc/ld.so.conf.d && \ { echo "ERROR: we shouldn't have a /etc/ld.so.conf.d directory"; exit 1; } || true mkdir -p /accts/mlweber1/instance-0/output/target/etc ( \ echo "NAME=Buildroot"; \ echo "VERSION=2018.05-git-01239-gba33728"; \ echo "ID=buildroot"; \ echo "VERSION_ID=2018.05-git"; \ echo "PRETTY_NAME=\"Buildroot 2018.05-git\"" \ ) > /accts/mlweber1/instance-0/output/target/usr/lib/os-release ln -sf ../usr/lib/os-release /accts/mlweber1/instance-0/output/target/etc >>> Sanitizing RPATH in target tree /accts/mlweber1/instance-0/buildroot/support/scripts/fix-rpath target touch /accts/mlweber1/instance-0/output/target/usr make: Leaving directory `/accts/mlweber1/instance-0/buildroot' make: Entering directory `/accts/mlweber1/instance-0/buildroot' >>> Buildroot 2018.05-git-01239-gba33728 Collecting legal info COPYING: OK (sha256: 9755181e27175cb3510b4da8629caa406fb355a19aa8e7d55f06bf8ab33323c4) >>> toolchain-external Collecting legal info >>> host-skeleton Collecting legal info >>> skeleton Collecting legal info >>> skeleton-init-none Collecting legal info >>> skeleton-init-common Collecting legal info >>> toolchain-external-custom Collecting legal info >>> toolchain Collecting legal info >>> boa 0.94.14rc21 Collecting legal info ERROR: No hash found for COPYING >>> host-gdb 7.11.1 Collecting legal info ERROR: No hash found for COPYING ERROR: No hash found for COPYING.LIB ERROR: No hash found for COPYING3 ERROR: No hash found for COPYING3.LIB >>> host-expat 2.2.5 Collecting legal info COPYING: OK (sha256: 46336ab2fec900803e2f1a4253e325ac01d998efb09bc6906651f7259e636f76) >>> host-pkgconf 0.9.12 Collecting legal info ERROR: No hash found for COPYING >>> host-ncurses 6.1 Collecting legal info ERROR: No hash found for README >>> genromfs 0.5.2 Collecting legal info ERROR: No hash found for COPYING >>> haserl 0.9.35 Collecting legal info ERROR: No hash found for COPYING >>> inotify-tools 3.20.1 Collecting legal info COPYING: OK (sha256: e41fc126320a79ed53b5aa3386f059f7d10770856d6fd714ab80a96ce6bd09d6) >>> host-autoconf 2.69 Collecting legal info ERROR: No hash found for COPYINGv3 ERROR: No hash found for COPYING.EXCEPTION >>> host-libtool 2.4.6 Collecting legal info COPYING: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) >>> host-m4 1.4.18 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-automake 1.15.1 Collecting legal info COPYING: OK (sha256: ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6) >>> iperf3 3.1.7 Collecting legal info ERROR: No hash found for LICENSE >>> ipmiutil 2.9.9 Collecting legal info ERROR: No hash found for COPYING >>> jq 1.5 Collecting legal info ERROR: No hash found for COPYING >>> libevent 2.1.8-stable Collecting legal info LICENSE: OK (sha256: ff02effc9b331edcdac387d198691bfa3e575e7d244ad10cb826aa51ef085670) >>> libffi 3.2.1 Collecting legal info LICENSE: OK (sha256: 0f4d7a0bfb83c37465d42dc305f124189196cc0cc2cc8d6f8461103682aebbc5) >>> libfm-extra 1.3.0.2 Collecting legal info COPYING: OK (sha256: d8c320ffc0030d1b096ae4732b50d2b811cf95e9a9b7377c1127b2563e0a0388) src/extra/fm-xml-file.c: OK (sha256: c3a3d93e111462f2b0292b56a6a7b87d342fd7156741d8b81b8b08723be4597e) >>> host-intltool 0.51.0 Collecting legal info ERROR: No hash found for COPYING >>> host-gettext 0.19.8.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) ERROR: No hash found for gettext-runtime/intl/COPYING.LIB >>> host-libxml2 2.9.7 Collecting legal info COPYING: OK (sha256: c5c63674f8a83c4d2e385d96d1c670a03cb871ba2927755467017317878574bd) >>> host-libxml-parser-perl 2.44 Collecting legal info ERROR: No hash found for README >>> libglib2 2.56.1 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-libglib2 2.56.1 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-libffi 3.2.1 Collecting legal info LICENSE: OK (sha256: 0f4d7a0bfb83c37465d42dc305f124189196cc0cc2cc8d6f8461103682aebbc5) >>> host-pcre 8.41 Collecting legal info LICENCE: OK (sha256: 9ac4dfc82b2645ff77b56b759f95f28aa15ab15a03670fa6d4313a6b351e60f0) >>> host-util-linux 2.32 Collecting legal info README.licensing: OK (sha256: 1e4b65802b0df8115395c697029d03339f983d451a473a08643309c684410d9a) Documentation/licenses/COPYING.GPLv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) Documentation/licenses/COPYING.UCB: OK (sha256: ba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f8) Documentation/licenses/COPYING.LGPLv2.1: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) Documentation/licenses/COPYING.BSD-3: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) Documentation/licenses/COPYING.ISC: OK (sha256: e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63) >>> host-zlib Collecting legal info >>> host-libzlib 1.2.11 Collecting legal info README: OK (sha256: 7960b6b1cc63e619abb77acaea5427159605afee8c8b362664f4effc7d7f7d15) >>> pcre 8.41 Collecting legal info LICENCE: OK (sha256: 9ac4dfc82b2645ff77b56b759f95f28aa15ab15a03670fa6d4313a6b351e60f0) >>> util-linux 2.32 Collecting legal info README.licensing: OK (sha256: 1e4b65802b0df8115395c697029d03339f983d451a473a08643309c684410d9a) Documentation/licenses/COPYING.GPLv2: OK (sha256: 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643) Documentation/licenses/COPYING.UCB: OK (sha256: ba7640f00d93e72e92b94b9d71f25ec53bac2f1682f5c4adcccb0018359f60f8) Documentation/licenses/COPYING.LGPLv2.1: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) Documentation/licenses/COPYING.BSD-3: OK (sha256: 9b718a9460fed5952466421235bc79eb49d4e9eacc920d7a9dd6285ab8fd6c6d) Documentation/licenses/COPYING.ISC: OK (sha256: e53348ce276358e9997014071c5294b36a18c4b34f32f00ee57b9acce0aafd63) >>> zlib Collecting legal info >>> libzlib 1.2.11 Collecting legal info README: OK (sha256: 7960b6b1cc63e619abb77acaea5427159605afee8c8b362664f4effc7d7f7d15) >>> libglob 1.0 Collecting legal info LICENSE: OK (sha256: 4cd4bac6ef90d4a91ee6e52df30f241045fb1a27fb53541ef4a9f8e47e6103ca) >>> libmaxminddb 1.3.2 Collecting legal info LICENSE: OK (sha256: cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30) >>> libnl 3.4.0 Collecting legal info COPYING: OK (sha256: dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551) >>> host-bison 3.0.4 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> host-flex 2.6.4 Collecting legal info COPYING: OK (sha256: 97fd685958d93be7f8dab939bb8161dbd6afb0718c63bfc337c24321aea44273) >>> libphidget 2.1.8.20140319 Collecting legal info ERROR: No hash found for COPYING >>> libusb 1.0.21 Collecting legal info ERROR: No hash found for COPYING >>> libsndfile 1.0.28 Collecting legal info ERROR: No hash found for COPYING >>> libusb-compat 0.1.5 Collecting legal info ERROR: No hash found for COPYING >>> links 2.14 Collecting legal info ERROR: No hash found for COPYING >>> lldpd 0.9.4 Collecting legal info ERROR: No hash found for README.md >>> lmbench 3.0-a9 Collecting legal info ERROR: No hash found for COPYING ERROR: No hash found for COPYING-2 >>> mcelog v153 Collecting legal info ERROR: No hash found for README.md >>> host-patchelf 0.9 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> php 7.2.5 Collecting legal info LICENSE: OK (sha256: 00e567a8d50359d93ee1f9afdd9511277660c1e70a0cbf3229f84403aa9aebb1) >>> quagga 1.1.1 Collecting legal info ERROR: No hash found for COPYING >>> host-gawk 4.2.1 Collecting legal info COPYING: OK (sha256: 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903) >>> rabbitmq-c v0.8.0 Collecting legal info ERROR: No hash found for LICENSE-MIT >>> host-cmake 3.8.2 Collecting legal info ERROR: No hash found for Copyright.txt >>> redis 3.2.11 Collecting legal info COPYING: OK (sha256: cbf420a3672475a6e2765e3c0984c1f81efe0212afb94a3c998ee63bfd661063) >>> scrub 2.6.1 Collecting legal info COPYING: OK (sha256: 204d8eff92f95aac4df6c8122bc1505f468f3a901e5a4cc08940e0ede1938994) DISCLAIMER: OK (sha256: f76abbfb80cde1036cb553cdecb08bb846a48e33c91ef56c0f494172fd407f33) >>> sg3_utils 1.42 Collecting legal info ERROR: No hash found for COPYING ERROR: No hash found for BSD_LICENSE >>> spi-tools 0.8.1 Collecting legal info ERROR: No hash found for LICENSE >>> szip 2.1 Collecting legal info ERROR: No hash found for COPYING >>> yavta 82ff2efdb9787737b9f21b6f4759f077c827b238 Collecting legal info WARNING: no hash file for COPYING.GPL WARNING: the Buildroot source code has not been saved WARNING: toolchain-external-custom: cannot save license (TOOLCHAIN_EXTERNAL_CUSTOM_LICENSE_FILES not defined) Legal info produced in /accts/mlweber1/instance-0/output/legal-info make: Leaving directory `/accts/mlweber1/instance-0/buildroot'