]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build: change to gnulib module list should rerun bootstrap
authorEric Blake <eblake@redhat.com>
Wed, 10 Mar 2010 17:03:29 +0000 (10:03 -0700)
committerJim Meyering <meyering@redhat.com>
Wed, 10 Mar 2010 17:14:15 +0000 (18:14 +0100)
* autogen.sh (curr_status): Also include hash of bootstrap.conf
when checking for changes that require bootstrap rerun.
* cfg.mk (_update_required): Likewise.

autogen.sh
cfg.mk

index 9ae8d679d719d6c7bbd9edb7c7af3a17bdc9f259..ff946787afa401aa45a4cc017e41bbba7aa023ee 100755 (executable)
@@ -65,7 +65,8 @@ fi
 # Ensure that whenever we pull in a gnulib update or otherwise change to a
 # different version (i.e., when switching branches), we also rerun ./bootstrap.
 curr_status=.git-module-status
-t=$(git submodule status|sed 's/^[ +-]//;s/ .*//')
+t=$(git submodule status|sed 's/^[ +-]//;s/ .*//'; \
+    git hash-object bootstrap.conf)
 if test "$t" = "$(cat $curr_status 2>/dev/null)"; then
     : # good, it's up to date, all we need is autoreconf
     autoreconf -if
diff --git a/cfg.mk b/cfg.mk
index 8b89cd217d441cf33629ffefe5b2d6f9efcc4d1b..3fd9f7b8f4a4c00089a6390427f92c926b5ef3fb 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -279,7 +279,8 @@ ifeq (0,$(MAKELEVEL))
   # b653eda3ac4864de205419d9f41eec267cb89eeb
   _submodule_hash = sed 's/^[ +-]//;s/ .*//'
   _update_required := $(shell                                          \
-      actual=$$(git submodule status | $(_submodule_hash));            \
+      actual=$$(git submodule status | $(_submodule_hash);             \
+               git hash-object bootstrap.conf);                        \
       stamp="$$($(_submodule_hash) $(_curr_status) 2>/dev/null)";      \
       test "$$stamp" = "$$actual"; echo $$?)
   ifeq (1,$(_update_required))