#!/bin/sh . config/options $SCRIPTS/build toolchain if [ "$DEBUG" = yes ]; then DEBUG_CONFIG="--enable-debug" else DEBUG_CONFIG="--disable-debug" fi export ac_cv_path_LIBUSB_CONFIG= export ac_cv_func_forkpty=no export ac_cv_lib_util_forkpty=no export MAKEFLAGS=-j1 cd $PKG_BUILD ./configure --host=$TARGET_NAME \ --build=$HOST_NAME \ --prefix=/usr \ --sysconfdir=/etc \ --disable-shared \ --enable-sandboxed \ --without-x \ --with-driver=userspace \ --with-syslog=LOG_DAEMON \ $DEBUG_CONFIG make $MAKEINSTALL -C tools