Skip to content

Commit 8c8bdcc

Browse files
committed
make: fix sentinel rules
PR #525 doesn't seem to work, it doesn't actually trigger a build of the library. Not sure why that passed CI.
1 parent 9567026 commit 8c8bdcc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AppMakefile.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ include $(2)/Makefile.version
6969

7070
$$($(3)_SENTINEL_FILE):
7171
$$(MAKE) -C $(2) -f Makefile.setup all
72-
$$(MAKE) -C $(2) -f Makefile all
7372

74-
$(1): $$($(3)_SENTINEL_FILE) ;
73+
$(1): $$($(3)_SENTINEL_FILE)
74+
$$(MAKE) -C $(2) -f Makefile all
7575
else
7676
# No Makefile.version, so this will work the first time the library is built.
7777
$(1):

0 commit comments

Comments
 (0)