From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 429791F491 for ; Sat, 2 Jun 2018 08:37:38 +0000 (UTC) From: Eric Wong To: cmogstored-public@bogomips.org Subject: [PATCH] fix trace.h dependency on probes.h Date: Sat, 2 Jun 2018 08:37:38 +0000 Message-Id: <20180602083738.17764-1-e@80x24.org> List-Id: I haven't tested with systemtap, lately; maybe something bit rotted. --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index ad44412..9f4f87a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -275,6 +275,7 @@ probes.h: probes.d probes.o: probes.d $(DTRACE) -C -G -s $< -o $@ +trace.h: probes.h EXTRA_DIST += probes.h BUILT_SOURCES += probes.h LDADD += probes.o -- EW