When installing 2.01 on Gentoo, I get "QA Notice: pkg-config files with wrong LDFLAGS detected"
This will fix it: sed -i -e '/@LDFLAGS@/d' serdisplib.pc.in
uuhm, serdisplib.pc.in is an autoconf-template, NOT the pkgconfig-file itself.
serdisplib.pc will be created when calling ./configure. all @blah@ placeholders will be replaced during this step, including @LDFLAGS@.
if the created serdisplib.pc still contains such a placeholder THIS would be an error though.
Log in to post a comment.
uuhm, serdisplib.pc.in is an autoconf-template, NOT the pkgconfig-file itself.
serdisplib.pc will be created when calling ./configure.
all @blah@ placeholders will be replaced during this step, including @LDFLAGS@.
if the created serdisplib.pc still contains such a placeholder THIS would be an error though.