mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
Fix build when cloned as submodule
Steps to reproduce: git init git submodule add -b master git://github.com/ioquake/ioq3.git cd ioq3 make USE_GIT=1
This commit is contained in:
parent
7ca43cb0be
commit
537d28556f
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -2657,9 +2657,9 @@ $(B)/ded/%.o: $(NDIR)/%.c
|
|||
|
||||
# Extra dependencies to ensure the git version is incorporated
|
||||
ifeq ($(USE_GIT),1)
|
||||
$(B)/client/cl_console.o : .git/index
|
||||
$(B)/client/common.o : .git/index
|
||||
$(B)/ded/common.o : .git/index
|
||||
$(B)/client/cl_console.o : .git
|
||||
$(B)/client/common.o : .git
|
||||
$(B)/ded/common.o : .git
|
||||
endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue