Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision b4a573c64e8de7d1c4ea9745e7b773254465eaa3)
+++ Jenkinsfile	(revision e11957efa812505f5819ce08aa6ec770b922c0e5)
@@ -102,4 +102,9 @@
 
 		echo GitLogMessage()
+
+		// This is a complete hack but it solves problems with automake thinking it needs to regenerate makefiles
+		// We fudged automake/missing to handle that but automake stills bakes prints inside the makefiles
+		// and these cause more problems.
+		sh 'find . -name Makefile.in -exec touch {} +'
 	}
 }
Index: automake/missing
===================================================================
--- automake/missing	(revision b4a573c64e8de7d1c4ea9745e7b773254465eaa3)
+++ automake/missing	(revision e11957efa812505f5819ce08aa6ec770b922c0e5)
@@ -1,5 +1,1 @@
-#! /bin/sh
-# Tdelisle : having the Makefiles.in automatically regenerated causes problems
-#            when using multiple versions of automake, even if only on end user machines
-#            therefore I am disabling that feature by commenting this script
-exit 0
+/usr/share/automake-1.15/missing
