d1ed09
From d7233ef81e575e84d831414605ba6368394d88b5 Mon Sep 17 00:00:00 2001
d1ed09
From: Colin Walters <walters@verbum.org>
d1ed09
Date: Mon, 15 Oct 2018 21:50:31 +0000
d1ed09
Subject: [PATCH] build-sys: Pass CFLAGS to $(DTRACE)
d1ed09
d1ed09
Fedora is using https://fedoraproject.org/wiki/Changes/Annobin
d1ed09
to try to ensure that all objects are built with hardening flags.
d1ed09
Pass down `CFLAGS` to ensure the SystemTap objects use them.
d1ed09
---
d1ed09
 gio/Makefile.am     | 2 +-
d1ed09
 glib/Makefile.am    | 2 +-
d1ed09
 gobject/Makefile.am | 2 +-
d1ed09
 3 files changed, 3 insertions(+), 3 deletions(-)
d1ed09
d1ed09
diff --git a/gio/Makefile.am b/gio/Makefile.am
d1ed09
index fc0b91855..05b20cdef 100644
d1ed09
--- a/gio/Makefile.am
d1ed09
+++ b/gio/Makefile.am
d1ed09
@@ -896,7 +896,7 @@ gio_probes.h: gio_probes.d
d1ed09
 		< $@.tmp > $@ && rm -f $@.tmp
d1ed09
 
d1ed09
 gio_probes.lo: gio_probes.d
d1ed09
-	$(AM_V_GEN) $(LIBTOOL) --mode=compile $(AM_V_lt) --tag=CC $(DTRACE) -G -s $< -o $@
d1ed09
+	$(AM_V_GEN) $(LIBTOOL) --mode=compile $(AM_V_lt) --tag=CC env CFLAGS="$(CFLAGS)" $(DTRACE) -G -s $< -o $@
d1ed09
 
d1ed09
 BUILT_SOURCES += gio_probes.h gio_probes.lo
d1ed09
 CLEANFILES += gio_probes.h gio_probes.h.tmp
d1ed09
diff --git a/glib/Makefile.am b/glib/Makefile.am
d1ed09
index 90d33d082..39163aa7f 100644
d1ed09
--- a/glib/Makefile.am
d1ed09
+++ b/glib/Makefile.am
d1ed09
@@ -386,7 +386,7 @@ glib_probes.h: glib_probes.d
d1ed09
 		< $@.tmp > $@ && rm -f $@.tmp
d1ed09
 
d1ed09
 glib_probes.lo: glib_probes.d
d1ed09
-	$(AM_V_GEN) $(LIBTOOL) --mode=compile $(AM_V_lt) --tag=CC $(DTRACE) -G -s $< -o $@
d1ed09
+	$(AM_V_GEN) $(LIBTOOL) --mode=compile $(AM_V_lt) --tag=CC env CFLAGS="$(CFLAGS)" $(DTRACE) -G -s $< -o $@
d1ed09
 
d1ed09
 BUILT_SOURCES += glib_probes.h glib_probes.lo
d1ed09
 CLEANFILES += glib_probes.h glib_probes.h.tmp
d1ed09
diff --git a/gobject/Makefile.am b/gobject/Makefile.am
d1ed09
index 4c28acdff..78748e96c 100644
d1ed09
--- a/gobject/Makefile.am
d1ed09
+++ b/gobject/Makefile.am
d1ed09
@@ -119,7 +119,7 @@ gobject_probes.h: gobject_probes.d
d1ed09
 		< $@.tmp > $@ && rm -f $@.tmp
d1ed09
 
d1ed09
 gobject_probes.lo: gobject_probes.d
d1ed09
-	$(AM_V_GEN) $(LIBTOOL) --mode=compile $(AM_V_lt) --tag=CC $(DTRACE) -G -s $< -o $@
d1ed09
+	$(AM_V_GEN) $(LIBTOOL) --mode=compile $(AM_V_lt) --tag=CC env CFLAGS="$(CFLAGS)" $(DTRACE) -G -s $< -o $@
d1ed09
 
d1ed09
 BUILT_SOURCES += gobject_probes.h gobject_probes.lo
d1ed09
 CLEANFILES += gobject_probes.h
d1ed09
-- 
d1ed09
2.21.0
d1ed09