Hello Frank, > This is what I did, but not locally because I wanted to trigger a > recompile on jenkins to see if the error checking was indeed the > problem. It was, and a proper (and hopefully working) alternative > solution is already in place, assuming I caught all places where this > happened. Jenkins will tell. Hmm, looking at the commit dfc7a06 you use
$PKGCONFIG --version 2>&1 >/dev/null && : || return which is very odd (since the LHS of || istill false iff PKGCONFIG failed). Instead why not use: if ! $PKGCONFIG --version 2>&1 >/dev/null ; then return ; fi which seems more intuitive? Also: if you have access to the Jenkins web-interface (Ian, Barry can give you) then you can trigger a recompile on the dashboard (via the schedule buttons on the right side in the table of setups). Yours, Roland -- My email is as private as my paper mail. I therefore support encrypting and signing email messages. Get my PGP key from http://keys.gnupg.net.
smime.p7s
Description: S/MIME Cryptographic Signature
_______________________________________________ Users mailing list [email protected] http://cactuscode.org/mailman/listinfo/users
