From f14b76b0906fcbce1b7319f0127335b3ca097860 Mon Sep 17 00:00:00 2001 From: serge-sans-paille Date: Tue, 16 Apr 2024 06:52:32 +0000 Subject: [PATCH] Bug 1890722 - Correctly track generation of ipdl files r=glandium Differential Revision: https://phabricator.services.mozilla.com/D207115 --- ipc/ipdl/Makefile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ipc/ipdl/Makefile.in b/ipc/ipdl/Makefile.in index 6ebff9cba002..4847569a5658 100644 --- a/ipc/ipdl/Makefile.in +++ b/ipc/ipdl/Makefile.in @@ -19,6 +19,7 @@ ipdl_py_deps := \ # NB: the IPDL compiler manages .ipdl-->.h/.cpp dependencies itself, # which is why we don't have explicit .h/.cpp targets here ipdl.track: $(ALL_IPDLSRCS) $(ALL_IPDLSRCS_FILE) $(srcdir)/sync-messages.ini $(srcdir)/message-metadata.ini $(ipdl_py_deps) + $(call BUILDSTATUS,START_Ipdl ipdl.py) $(PYTHON3) $(srcdir)/ipdl.py \ --sync-msg-list=$(srcdir)/sync-messages.ini \ --msg-metadata=$(srcdir)/message-metadata.ini \ @@ -27,6 +28,7 @@ ipdl.track: $(ALL_IPDLSRCS) $(ALL_IPDLSRCS_FILE) $(srcdir)/sync-messages.ini $(s $(IPDLDIRS:%=-I%) \ --file-list $(ALL_IPDLSRCS_FILE) touch $@ + $(call BUILDSTATUS,END_Ipdl ipdl.py) export:: ipdl.track endif