diff options
author | David Smith <dsmith@redhat.com> | 2009-09-24 08:10:16 -0500 |
---|---|---|
committer | David Smith <dsmith@redhat.com> | 2009-09-24 08:10:16 -0500 |
commit | d3e3db27d3410fe52e826ff4f76e5a84d192cbb2 (patch) | |
tree | 7a21e98fdc99153bb90fcaace42490fa54f72313 /grapher/Makefile.am | |
parent | c3f070d9ef42f9b8ceea7ddb9c69496872f7f44c (diff) | |
download | systemtap-steved-d3e3db27d3410fe52e826ff4f76e5a84d192cbb2.tar.gz systemtap-steved-d3e3db27d3410fe52e826ff4f76e5a84d192cbb2.tar.xz systemtap-steved-d3e3db27d3410fe52e826ff4f76e5a84d192cbb2.zip |
Fixed grapher build problem caused by configure update.
* grapher/Makefile.am: Updated gtkmm CFLAGS/LIBS variable name.
* grapher/Makefile.in: Regenerated.
* Makefile.in: Ditto.
* doc/Makefile.in
* doc/SystemTap_Tapset_Reference/Makefile.in
Diffstat (limited to 'grapher/Makefile.am')
-rw-r--r-- | grapher/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Makefile.am b/grapher/Makefile.am index 028b3b3a..472f2f36 100644 --- a/grapher/Makefile.am +++ b/grapher/Makefile.am @@ -1,7 +1,7 @@ if BUILD_GRAPHER bin_PROGRAMS = stapgraph -stapgraph_CXXFLAGS = $(GRAPHER_CFLAGS) +stapgraph_CXXFLAGS = $(gtkmm_CFLAGS) stapgraph_SOURCES = grapher.cxx StapParser.cxx Graph.cxx GraphWidget.cxx CairoWidget.cxx -stapgraph_LDADD = $(GRAPHER_LIBS) +stapgraph_LDADD = $(gtkmm_LIBS) endif |