empty prefix causes -L flags to be omitted #45
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
fixed with
7cae28f
(issue #44)this caused build of glib to fail because it couldnt find -L for libffi:
/lib/pkgconfig/libffi.pc:
prefix=
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${libdir}/libffi-3.0.11/include
[...]
pkg-config being pkgconf:
root:/src$ pkg-config --libs-only-L libffi
[empty output]
pkg-config original:
root:/src$ pkg-config --libs-only-L libffi
-L/lib
[correct output]