GNOME Bugzilla – Bug 742186
configure.ac: save LDFLAGS during tests
Last modified: 2015-07-04 18:37:10 UTC
Created attachment 293567 [details] [review] tracker-save-ldflags.patch if you have special LDFLAGS and CFLAGS combinations (like -fPIE / -pie) confiogure will have problems due to clearing CFLAGS but not LDFLAGS. ATtached patch does save also LDFLAGS
Comment on attachment 293567 [details] [review] tracker-save-ldflags.patch Thanks for the patch, looks good to me. Please commit :)
Thanks for the patch, it missed a last appearance on m4/sqlite-builtin-fts4 :). I updated the patch and am pushing now to master.
The following fix has been pushed: 62d44fe configure: Save LDFLAGS
Created attachment 306829 [details] [review] configure: Save LDFLAGS There's places where CFLAGS is modified/restored while LDFLAGS is left untouched, both should be saved/restored at the same time.