diff options
author | Vibhav Pant <vibhavp@gmail.com> | 2023-02-11 13:49:35 +0530 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2023-02-15 17:29:40 +0100 |
commit | ef1ab1657fda1fd38a082b5652a2bbc6d510ffff (patch) | |
tree | 9ce641d7f6363ae9b84438ec39d51f403eeadd28 | |
parent | 15cc25829a97c3957e520e971868aacc84341317 (diff) | |
download | linux-ef1ab1657fda1fd38a082b5652a2bbc6d510ffff.tar.gz linux-ef1ab1657fda1fd38a082b5652a2bbc6d510ffff.tar.bz2 linux-ef1ab1657fda1fd38a082b5652a2bbc6d510ffff.zip |
tools/lib/thermal: Fix include path for libnl3 in pkg-config file.
Fixes pkg-config returning malformed CFLAGS for libthermal.
Signed-off-by: Vibhav Pant <vibhavp@gmail.com>
Link: https://lore.kernel.org/r/20230211081935.62690-1-vibhavp@gmail.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | tools/lib/thermal/libthermal.pc.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/thermal/libthermal.pc.template b/tools/lib/thermal/libthermal.pc.template index 6f3769731b59..ac24d0ab17f5 100644 --- a/tools/lib/thermal/libthermal.pc.template +++ b/tools/lib/thermal/libthermal.pc.template @@ -9,4 +9,4 @@ Description: thermal library Requires: libnl-3.0 libnl-genl-3.0 Version: @VERSION@ Libs: -L${libdir} -lnl-genl-3 -lnl-3 -Cflags: -I${includedir} -I{include}/libnl3 +Cflags: -I${includedir} -I${include}/libnl3 |