build.mk: Fix dependency on $(LIB_DEP_FILE)

The previous fix in 6b33757154 was
invalid.
This commit is contained in:
Torsten Hilbrich 2013-03-20 09:15:47 +01:00 committed by Norman Feske
parent ac9c8c769c
commit 87f83c1cff
1 changed files with 2 additions and 2 deletions

View File

@ -111,8 +111,8 @@ init_progress_log:
@echo "# Library build progress log - generated by dep_prg.mk and dep_lib.mk" >> $(LIB_PROGRESS_LOG)
@echo "#" >> $(LIB_PROGRESS_LOG)
.PHONY: init_libdep_file $(dir $(LIB_DEP_FILE))
init_libdep_file:
.PHONY: init_libdep_file
init_libdep_file: $(dir $(LIB_DEP_FILE))
@echo "checking library dependencies..."
@(echo "#"; \
echo "# Library dependencies for build '$(DST_DIRS)'"; \