mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-02-05 13:30:31 +01:00
13 lines
185 B
Bash
Executable file
13 lines
185 B
Bash
Executable file
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
. ${srcdir}/common
|
|
|
|
# expect unescaped tilde from cflags
|
|
RESULT='-I~'
|
|
run_test --cflags tilde
|
|
|
|
# expect unescaped tilde from libs
|
|
RESULT='-L~'
|
|
run_test --libs tilde
|