We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building GIT head with
mkdir obj && cd obj/ && cmake .. && make -j5 && mkdir DEST && make install DESTDIR=`pwd`/DEST
yields
(sid)ametzler@argenau:/tmp/FLANN/flann/obj$ tail -n3 DEST/usr/local/lib/pkgconfi g/flann.pc Libs: -L${libdir} -L/usr/lib/x86_64-linux-gnu;-llz4 -lflann -lflann_cpp Cflags: -I${includedir}
Note the stray semicolon in Libs.
flann uses @LZ4_STATIC_LDFLAGS@ in cmake/flann.pc.in, however @LZ4_STATIC_LDFLAGS@ is a semicolon delimited list.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Building GIT head with
yields
Note the stray semicolon in Libs.
flann uses @LZ4_STATIC_LDFLAGS@ in cmake/flann.pc.in, however @LZ4_STATIC_LDFLAGS@ is a semicolon delimited list.
The text was updated successfully, but these errors were encountered: