mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2025-12-29 10:00:05 +01:00
15 lines
228 B
Bash
Executable file
15 lines
228 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# Do the Solaris Dance:
|
|
if [ ! -d ~root ] ; then
|
|
exec /usr/xpg4/bin/sh $0 "$@"
|
|
fi
|
|
|
|
set -e
|
|
|
|
. ${srcdir}/common
|
|
|
|
ARGS="--define-variable=includedir=/includedir/ --cflags simple"
|
|
RESULT="-I/includedir/"
|
|
|
|
run_test
|