#!/bin/sh set -e set -x # skip test if we have no pkg-config pkg-config --version || exit 77 abs_top_builddir=`cd .. && pwd` PKG_CONFIG_PATH=${abs_top_builddir}:${PKG_CONFIG_PATH} pkg-config --define-variable=GSL_CBLAS_LIB=-lfoo --libs gsl | grep 'lfoo' exit 0