mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-04-30 15:40:51 +02:00
14 lines
185 B
Text
14 lines
185 B
Text
|
|
#! /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
|