Skip to content

Commit 2872a8e

Browse files
obbardcandersson
authored andcommitted
Fix version.h generation
Currently the build fails when parallelised with: make[1]: *** No rule to make target 'version.h', needed by 'util.o'. Stop. Fix the name of the Makefile dependency to fix the build error. Fixes: #91 Closes: #92 Signed-off-by: Christopher Obbard <christopher.obbard@linaro.org>
1 parent ad320a1 commit 2872a8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ versionfile:
3434
@echo "#define VERSION \"$(GITREF)\"" > .version.h
3535
@cmp -s .version.h version.h || cp .version.h version.h
3636

37-
util.o: version.h
37+
util.o: versionfile
3838

3939
clean:
4040
rm -f $(QDL) $(QDL_OBJS)

0 commit comments

Comments
 (0)