diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-29 13:59:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-11-29 14:02:11 +0200 |
commit | bdbb7e2535009b2a142567a2235ac0a71352c749 (patch) | |
tree | e0d591f0c78539293edd4566dd1cbdd6d8cbccbe /libbuild2/cc/pkgconfig.cxx | |
parent | f3b876a46c9739c28c1a9e25ce95ec689713038b (diff) |
Reorder {cc,c/cxx}.{poptions,loptions}
Now it is c/cxx first followed by cc which is the reverse order of coptions
since the header/library search paths are examined in the order specified (in
contrast to the "last value wins" semantics that we assume for coptions).
Diffstat (limited to 'libbuild2/cc/pkgconfig.cxx')
-rw-r--r-- | libbuild2/cc/pkgconfig.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/pkgconfig.cxx b/libbuild2/cc/pkgconfig.cxx index 56acafc..6fcf711 100644 --- a/libbuild2/cc/pkgconfig.cxx +++ b/libbuild2/cc/pkgconfig.cxx @@ -1358,8 +1358,8 @@ namespace build2 // os << "Cflags:"; os << " -I" << escape (idir.string ()); - save_poptions (c_export_poptions); save_poptions (x_export_poptions); + save_poptions (c_export_poptions); os << endl; // Libs. |