Makefile.am: make sure i3-config-wizard depends on libi3.a (#4069)
i3-config-wizard uses libi3.a as part of its build process. When parallel build is enabled, build of i3-config-wizard may start before libi3.a finished building. Fix this by adding dependency on libi3.a Fixes: #4020
This commit is contained in:
parent
2fb2ef60de
commit
666906b517
|
@ -442,7 +442,8 @@ i3_config_wizard_i3_config_wizard_SOURCES = \
|
||||||
i3-config-wizard/xcb.h
|
i3-config-wizard/xcb.h
|
||||||
|
|
||||||
i3_config_wizard_i3_config_wizard_DEPENDENCIES = \
|
i3_config_wizard_i3_config_wizard_DEPENDENCIES = \
|
||||||
$(config_parser_SOURCES)
|
$(config_parser_SOURCES) \
|
||||||
|
$(top_builddir)/libi3.a
|
||||||
|
|
||||||
test_inject_randr15_CPPFLAGS = \
|
test_inject_randr15_CPPFLAGS = \
|
||||||
$(AM_CPPFLAGS)
|
$(AM_CPPFLAGS)
|
||||||
|
|
Loading…
Reference in New Issue