Strange path lookups resulting in no directories or files found #89
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?
To cut things short, I packaged this with
./configure --prefix=/usr
along withmake
,make DESTDIR="$pkgdir" install
and included thepkg-config
symlink.However I get the following errors:
[What is this 'world' that
pkgconf
is referring to?]So I threw it at strace and found it looking in rather odd places:
It seems as if these strings are not being expanded correctly in the Makefile and ending up in the final binary:
I suppose a work around for this might be to explicitly set these via
./configure
. Ideally I'd not want to definePKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/share/pkgconfig
explicitly in my environment when those should be the defaults.PS: If you need any more information about my environment just ask, I wasn't sure what to include, if it was relevant.
Edit: I can workaround this issue by explicitly setting
--datadir=/usr/share
and--libdir=/usr/lib
.What version did you build, what shell?
The build was from commit
7e6fa325eb
IIRC and the shell used was bash.This issue still affects up to commit
a7893e7572
.Lovely, that works. Thank you o/