]> err.no Git - pkg-config/commitdiff
2008-01-16 Tollef Fog Heen <tfheen@err.no>
authorTollef Fog Heen <tfheen@err.no>
Wed, 16 Jan 2008 22:46:58 +0000 (23:46 +0100)
committerTollef Fog Heen <tfheen@err.no>
Wed, 16 Jan 2008 22:46:58 +0000 (23:46 +0100)
* check/check-requires-private: Fix up test case.  We want to get
the private -I option in all cases.

ChangeLog
check/check-requires-private

index 5b1136bc4395ebf6488056ae23382f24ca3b8f3d..275e90b59e729c9b443512270b75ea2444580474 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2008-01-16  Tollef Fog Heen  <tfheen@err.no>
 
+       * check/check-requires-private: Fix up test case.  We want to get
+       the private -I option in all cases.
+
        * pkg.h, pkg.c (string_list_to_string), pkg-config.1, main.c
        (main): Add sysroot support and document same.  Triggered by
        setting PKG_CONFIG_SYSROOT_DIR in the environment.
index 234b8ed31c1cfba116726ecab2cffc0599432c4d..7d0f9a9642a668ab8363541d13614e2b51910889 100755 (executable)
@@ -9,14 +9,15 @@ set -e
 
 . ${srcdir}/common
 
+set -x 
 # expect cflags from requires-test and public-dep
 ARGS="--cflags requires-test"
-RESULT="-I/requires-test/include -I/public-dep/include"
+RESULT="-I/requires-test/include -I/private-dep/include -I/public-dep/include"
 run_test
 
 # still expect those cflags for static linking case
 ARGS="--static --cflags requires-test"
-RESULT="-I/requires-test/include -I/public-dep/include"
+RESULT="-I/requires-test/include -I/private-dep/include -I/public-dep/include"
 run_test
 
 # expect libs for just requires-test and public-dep