mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-04-18 06:10:44 +02:00
15 lines
178 B
Bash
Executable file
15 lines
178 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="--libs simple"
|
|
RESULT="-lsimple"
|
|
|
|
run_test
|