# HG changeset patch # User "Yann E. MORIN" # Date 1343766449 -7200 # Node ID 7776e8369284bc091bb3a75e2174b7dd7f6b933b # Parent 1175e884f5cf269793af3b9179e0dbd259a58cf9 complibs/cloog: create missing m4 dir Because we now patch configure.in and configure, the Makefile quicks in a re-build rule as the source files are now more recent than the bundled generated files, and that fails because the m4 directory is missing, although on some systems where aclocal is not installed, the re-build rule does nothing (except a warning). Always create tht directory. Reported-by: Per Arnold Blaasmo [Also thanks to Thomas De Schampheleire for some digging works on this issue] Signed-off-by: "Yann E. MORIN" diff -r 1175e884f5cf -r 7776e8369284 scripts/build/companion_libs/cloog.sh --- a/scripts/build/companion_libs/cloog.sh Mon Jul 23 14:06:25 2012 +0200 +++ b/scripts/build/companion_libs/cloog.sh Tue Jul 31 22:27:29 2012 +0200 @@ -27,6 +27,9 @@ CT_Extract "cloog-ppl-${CT_CLOOG_VERSION}" CT_Patch "cloog-ppl" "${CT_CLOOG_VERSION}" + # Help the autostuff in case it thinks there are things to regenerate... + CT_DoExecLog DEBUG mkdir -p "${CT_SRC_DIR}/cloog-ppl-${CT_CLOOG_VERSION}/m4" + if [ "${CT_CLOOG_NEEDS_AUTORECONF}" = "y" ]; then CT_Pushd "${CT_SRC_DIR}/cloog-ppl-${CT_CLOOG_VERSION}" CT_DoExecLog CFG ./autogen.sh