the source3/configure.in has this: [ if x$enable_external_libtalloc = xyes; then AC_MSG_ERROR([Unable to find libtalloc]) else enable_external_libtalloc=no fi ]) looks like someone forgot to add "test" to the start of the if statement, and the expansion should be quoted to avoid unwanted side effects: [ if test "x$enable_external_libtalloc" = xyes; then
Karo, can you fix the missing "test" in 3.4, please? In master there is no "test" missing there.
Created attachment 4898 [details] proposed patch
Comment on attachment 4898 [details] proposed patch yes, looks fine.
Karolin, please add to 3-4-test.
Pushed. Closing out bug report. Thanks!