tools/vtpm: fix tpm_version.h error during parallel build
authorOlaf Hering <olaf@aepfle.de>
Fri, 3 Aug 2012 08:54:07 +0000 (09:54 +0100)
committerOlaf Hering <olaf@aepfle.de>
Fri, 3 Aug 2012 08:54:07 +0000 (09:54 +0100)
Generating the tpm_version.h is not make -j safe:

In file included from ../tpm/tpm_emulator.h:25:0,
                 from ../tpm/tpm_startup.c:18:
../tpm/tpm_version.h:1:0: error: unterminated #ifndef
make[5]: *** [tpm_startup.o] Error 1

This happens because make can not know that 'all-recursive' depends on
'version'. Fix this by calling the individual make targets. Doing it
this way avoids adding yet another patch to the downloaded source.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
Committed-by: Ian Campbell <ian.campbell@citrix.com>
tools/vtpm/Makefile

index c8a5ece6eb040921fdb8794517d38d0c1a64c849..7b3efa51dc1e1794a2e4b2053dae0feaa7bd5a58 100644 (file)
@@ -23,7 +23,7 @@ build: build_sub
 
 .PHONY: install
 install: build
-       $(MAKE) -C $(VTPM_DIR) $@
+       $(MAKE) -C $(VTPM_DIR) install-recursive
 
 .PHONY: clean
 clean:
@@ -66,7 +66,8 @@ updatepatches: clean orig
 .PHONY: build_sub
 build_sub: $(VTPM_DIR)/tpmd/tpmd
        set -e; if [ -e $(GMP_HEADER) ]; then \
-               $(MAKE) -C $(VTPM_DIR); \
+               $(MAKE) -C $(VTPM_DIR) version; \
+               $(MAKE) -C $(VTPM_DIR) all-recursive; \
        else \
                echo "=== Unable to build VTPMs. libgmp could not be found."; \
        fi