Skip to content

Commit

Permalink
Fix the default pkgconfig pc path
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioc committed Dec 15, 2023
1 parent d4d1584 commit 1bdf08a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bootstrap-funcs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,9 @@ compile_pkgconfiglite() {
rm -rf $PKGCONFIGLITE_SRC.obj &&
mkdir -p $PKGCONFIGLITE_SRC.obj &&
cd $PKGCONFIGLITE_SRC.obj &&
$SOURCE/$PKGCONFIGLITE_SRC/configure --prefix=$CROSS_TOOLS --host=${TARGET}\
--with-pc-path="/sys/lib/pkgconfig:/sys/share/pkgconfig" &&
$SOURCE/$PKGCONFIGLITE_SRC/configure \
--prefix=$CROSS_TOOLS --host=$TARGET \
--with-pc-path=$SYS_ROOT/lib/pkgconfig &&
make -j$PROCS &&
make -j$PROCS install &&
cd ..
Expand Down

0 comments on commit 1bdf08a

Please sign in to comment.