autoconf: xen: force a refresh with autoconf
authorLuis R. Rodriguez <mcgrof@suse.com>
Fri, 13 Jun 2014 01:18:46 +0000 (18:18 -0700)
committerIan Campbell <ian.campbell@citrix.com>
Wed, 2 Jul 2014 14:25:36 +0000 (15:25 +0100)
With some new functionality introduced we can't keep around the old cache,
but more specifically at times autogen.sh can produce inconsistent
results without considering all files obsolete. The cost of considering
all files obsolete is small so just force it.

Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: Ian Jackson <ian.jackson@eu.citrix.com>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: Keir Fraser <keir@xen.org>
Cc: Tim Deegan <tim@xen.org>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
autogen.sh

index b5c96882d90ef895900ed6cca60c3a6f8d04a217..2be836008ac32934e880a597cf2da26bd7f807db 100755 (executable)
@@ -1,12 +1,12 @@
 #!/bin/sh -e
-autoconf
+autoconf -f
 ( cd tools
-  autoconf
+  autoconf -f
   autoheader
 )
 ( cd stubdom
-  autoconf
+  autoconf -f
 )
 ( cd docs
-  autoconf
+  autoconf -f
 )