Skip to content

Commit

Permalink
Update build-blst.bash
Browse files Browse the repository at this point in the history
  • Loading branch information
angerman committed Apr 21, 2023
1 parent a8af389 commit b1a467d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-blst.bash
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ git reset --hard $BLST_REF
./build.sh

mkdir -p pkgconfig
# the $PREFIX//\\// is to replace windows \ with /
# as that screws up a lot of cli arguments, and the
# \ are treated as escape characters when written into
# prefix (through echo).
cat <<EOF > pkgconfig/libblst.pc
prefix=$PREFIX
prefix=${PREFIX//\\//}
exec_prefix=\${prefix}
libdir=\${prefix}
includedir=\${prefix}/bindings
Expand Down

0 comments on commit b1a467d

Please sign in to comment.