forked from ariadne/pkgconf
add additional sysroot testcase fixtures
parent
a61193c723
commit
19b1befb5d
|
@ -98,6 +98,8 @@ EXTRA_DIST = pkg.m4 \
|
|||
tests/lib1/tuple-quoting.pc \
|
||||
tests/lib1/empty-tuple.pc \
|
||||
tests/lib1/orphaned-requires-private.pc \
|
||||
tests/lib1/sysroot-dir-2.pc \
|
||||
tests/lib1/sysroot-dir-3.pc \
|
||||
$(test_scripts) \
|
||||
doc/conf.py \
|
||||
doc/extract.py \
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
prefix=${pc_sysrootdir}/usr
|
||||
|
||||
Name: sysroot-dir
|
||||
Description: Package for testing whether sysroot dirs are repeated or not
|
||||
Version: 1
|
||||
CFlags: -I${prefix}/include
|
||||
Libs: -L${prefix}/lib -lfoo
|
|
@ -0,0 +1,9 @@
|
|||
prefix=/sysroot
|
||||
includedir=${prefix}/include
|
||||
libdir=${prefix}/lib
|
||||
|
||||
Name: sysroot-dir
|
||||
Description: Package for testing whether sysroot dirs are repeated or not
|
||||
Version: 1
|
||||
CFlags: -I${includedir}
|
||||
Libs: -L${libdir} -lfoo
|
Loading…
Reference in New Issue